ownmedia/README.md
Alan Daniels c8b232d494 simple video test (2)
now with DASH (instead of HLS)
2025-11-09 19:04:55 +11:00

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
```