Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
ffmpeg [2013/06/28 15:19]
beandog
ffmpeg [2019/06/26 13:29]
beandog
Line 1: Line 1:
 ====== ffmpeg ====== ====== ffmpeg ======
 +
 +  * [[frameinfo]]
 +  * [[yadif]]
 +
 +To do a clean MPG copy from a DVD to a MKV:
 +
 +<​code>​
 +dvd_copy -o - | ffmpeg -i - -map 0:v -map i:0x80 -c:v copy -c:a copy -f vob dvd_copy.mkv ​
 +</​code>​
  
 === archives: Wrong audio track by default === === archives: Wrong audio track by default ===
Line 76: Line 85:
 === archives: Muxing to Matroska === === archives: Muxing to Matroska ===
  
-ffmpeg seems to have issues creating MKV files. ​ For one, they are much larger +ffmpeg seems to have issues creating MKV files. ​ For one, they are much larger than an AVI with the same encoding options. ​ Secondly, they don'seem to work well when AC3 is placed in there. ​ I'd recommend encoding to AVI (or MP4) and then using mkvmerge.
-than an AVI with the same encoding options. ​ Secondly, they dont' seem to work +
-well when AC3 is placed in there. ​ I'd recommend encoding to AVI (or MP4) and  +
-then using mkvmerge.+

Navigation