Changes between Version 2 and Version 3 of notes/media


Ignore:
Timestamp:
2020-03-29T14:47:03Z (5 years ago)
Author:
root
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • notes/media

    v2 v3  
    99[[br]]
    1010
    11 == concatenate video with `ffmpeg` with no encode:
     11== concatenate video with `ffmpeg` avoiding to encoding:
    1212{{{#!sh
    1313ffmpeg -i myfile1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
     
    1818[[br]]
    1919
    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
     22ffmpeg -i https://url.to/manifest.mpd -map 0:1 -map 0:4 -c copy output.mp4```
     23}}}
    2224
    2325[[br]]