video.html 348 B

1234567891011121314
  1. <html>
  2. <body>
  3. <video id="videoPlayer" src="/video.webm" autoplay muted></video>
  4. <script>
  5. const { ipcRenderer } = require('electron');
  6. videoPlayer.addEventListener('play', e => {
  7. ipcRenderer.send('result', 'play');
  8. });
  9. videoPlayer.addEventListener('error', e => {
  10. ipcRenderer.send('result', 'error');
  11. });
  12. </script>
  13. </body>
  14. </html>