Changes between Version 2 and Version 3 of notes/media
- Timestamp:
- 2020-03-29T14:47:03Z (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
notes/media
v2 v3 9 9 [[br]] 10 10 11 == concatenate video with `ffmpeg` with no encode:11 == concatenate video with `ffmpeg` avoiding to encoding: 12 12 {{{#!sh 13 13 ffmpeg -i myfile1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts … … 18 18 [[br]] 19 19 20 == download dash video with `ffmpeg' with no encode: 21 ```ffmpeg -i https://url.to/manifest.mpd -map 0:1 -map 0:4 -c copy output.mp4``` 20 == download dash video with `ffmpeg` avoiding to encoding: 21 {{{#!sh 22 ffmpeg -i https://url.to/manifest.mpd -map 0:1 -map 0:4 -c copy output.mp4``` 23 }}} 22 24 23 25 [[br]]