index.html 747 B

1234567891011121314151617181920212223242526272829303132
  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 { invoke, convertFileSrc } = window.__TAURI__.tauri
  19. const video = document.getElementById('video_source')
  20. const source = document.createElement('source')
  21. invoke('video_uri').then(([scheme, path]) => {
  22. source.type = 'video/mp4'
  23. source.src = convertFileSrc(path, scheme)
  24. video.appendChild(source)
  25. video.load()
  26. })
  27. </script>
  28. </body>
  29. </html>