simple video test (2)
now with DASH (instead of HLS)
This commit is contained in:
parent
fc4558be2c
commit
c8b232d494
9 changed files with 342 additions and 11 deletions
11
README.md
11
README.md
|
|
@ -1,3 +1,14 @@
|
|||
# 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
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue