We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70306dc commit dc0612bCopy full SHA for dc0612b
examples/streaming/index.html
@@ -25,7 +25,7 @@
25
const video = document.getElementById('video_source')
26
const source = document.createElement('source')
27
source.type = 'video/mp4'
28
- source.src = convertFileSrc('test_video.mp4', 'stream')
+ source.src = convertFileSrc('streaming_example_test_video.mp4', 'stream')
29
video.appendChild(source)
30
video.load()
31
</script>
examples/streaming/tauri.conf.json
@@ -18,7 +18,7 @@
18
"security": {
19
"csp": "default-src 'self'; connect-src ipc: http://ipc.localhost; media-src stream: http://stream.localhost",
20
"assetProtocol": {
21
- "scope": ["**/test_video.mp4"]
+ "scope": ["**/streaming_example_test_video.mp4"]
22
}
23
24
},
0 commit comments