index.html 830 B

123456789101112131415161718192021222324252627282930313233
  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. body {
  8. margin: unset;
  9. overflow: hidden;
  10. }
  11. video {
  12. width: 100vw;
  13. height: 100vh;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <video id="video_source" controls="" autoplay="" name="media">
  19. <source type="video/mp4" />
  20. </video>
  21. <script>
  22. const { invoke, convertFileSrc } = window.__TAURI__.core
  23. const video = document.getElementById('video_source')
  24. const source = document.createElement('source')
  25. source.type = 'video/mp4'
  26. source.src = convertFileSrc('streaming_example_test_video.mp4', 'stream')
  27. video.appendChild(source)
  28. video.load()
  29. </script>
  30. </body>
  31. </html>