index.html 753 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <style>
  8. video {
  9. width: 100vw;
  10. height: 100vh;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <video id="video_source" controls="" autoplay="" name="media">
  16. <source type="video/mp4" />
  17. </video>
  18. <script>
  19. const { convertFileSrc } = window.__TAURI__.tauri
  20. const video = document.getElementById('video_source')
  21. const source = document.createElement('source')
  22. source.type = 'video/mp4'
  23. source.src = convertFileSrc('example/test_video.mp4', 'stream')
  24. video.appendChild(source)
  25. video.load()
  26. </script>
  27. </body>
  28. </html>