Differences
This shows you the differences between two versions of the page.
— |
avconv [2017/07/17 23:24] (current) beandog created |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== avconv ====== | ||
+ | == Multiple streams == | ||
+ | |||
+ | Copy the first video and audio track to a new file: | ||
+ | |||
+ | <code> | ||
+ | avconv -i bluray.m2ts -codec copy -map 0:v:0 -map 0:a:0 bluray.mp4 | ||
+ | </code> |