tauri/examples/streaming
Amr Bashir 354be36d4e
refactor(core)!: pass webview label to uri scheme protocol handlers (#11163)
* refactor!(core): pass webview label to uri scheme protocol handlers

close #10691

* Add `UriSchemeContext`

* doctests
2024-09-29 07:41:26 -03:00
..
index.html fix(examples): streaming file path 2024-08-26 21:48:48 -03:00
main.rs refactor(core)!: pass webview label to uri scheme protocol handlers (#11163) 2024-09-29 07:41:26 -03:00
README.md chore: cleanup and simplify examples (#10743) 2024-08-27 01:25:36 +03:00
tauri.conf.json Restructure the repository (#10796) 2024-08-27 18:42:30 -03:00

Streaming example

A simple Tauri Application showcase how to stream video through custom protocol but can be adapted to stream any type of files.

To execute run the following on the root directory of the repository: cargo run --example streaming.

Note

Tauri has a built-in asset protocol that implements this streaming functionality so you don't need to. This example just exists as a reference.