index.html 742 B

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