Здравствуйте, я запустил простое электронное приложение из приложения angular 7, а после установки электрона мое приложение показывает в фоновом режиме видео, которое зацикливается, а на локальном хосте я показываю начало и зацикливание видео, но когда я собираю и создаю дистрибутивдля окон и запускаю exe-файл, я показываю только изображение видео, и это не запускается.
slider.component.html
<div class="container">
<div class="col-md 12">
<video autoplay loop poster="" id="bgvid" #videoPlayer>
<!-- MP4 must be first for iPad! -->
<source src=" ./assets/video/Superb_sunset.mp4" type="video/mp4" /><!-- Safari / iOS video -->
</video>
</div>
</div>
main.js
const { app, BrowserWindow } = require('electron')
let win;
function createWindow () {
// Create the browser window.
win = new BrowserWindow({
width: 600,
height: 600,
backgroundColor: '#ffffff',
icon: `file://${__dirname}/dist/lasalute/assets/logo.png`
})
win.loadURL(`file://${__dirname}/dist/lasalute/index.html`)
//// uncomment below to open the DevTools.
// win.webContents.openDevTools()
// Event when the window is closed.
win.on('closed', function () {
win = null
})
}
// Create window on electron intialization
app.on('ready', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On macOS specific close process
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', function () {
// macOS specific close process
if (win === null) {
createWindow()
}
})
организация папок
-dist
--lasalute(project name )
--- assets
--- index.html
---main
---style.css
---other
-lasalute_win32(in this folder there is a .exe )
-src
--app
---slider.component.html
---slider.component.css
---slider.component.ts
--assets
---img
---video
----superb_sunset.mp4
--index.html
-main.js