14 lines
313 B
Markdown
14 lines
313 B
Markdown
# OwnMedia
|
|
|
|
Built with Zig 0.15.1 & Vite 7.1.12
|
|
|
|
## Testing different file streaming methods
|
|
### HLS
|
|
```sh
|
|
ffmpeg -i test.mp4 -codec: copy -hls_time 10 -hls_list_size 0 -f hls test.m3u8
|
|
```
|
|
|
|
### DASH
|
|
```sh
|
|
ffmpeg -i test.mp4 -map 0:v:0 -map 0:a:0 -codec: copy -use_timeline 1 -use_template 1 -f dash test.mpd
|
|
```
|