1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-19 05:41:16 +00:00

3-pass encoding is evil.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12777 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2004-07-08 17:06:24 +00:00
parent 52f2a5ce25
commit 00dec2ef12

View File

@ -394,11 +394,10 @@ before starting.
</para>
<example>
<title>Copying two subtitles from a DVD while doing 3-pass encoding</title>
<title>Copying two subtitles from a DVD while doing 2-pass encoding</title>
<screen>
rm subtitles.idx subtitles.sub
mencoder dvd://1 -vobsubout subtitles -vobsuboutindex 0 -sid 2 -o frameno.avi -ovc frameno
mencoder dvd://1 -oac copy -ovc lavc -lavcopts vcodec=mpeg4:vpass=1
mencoder dvd://1 -oac copy -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 -vobsubout subtitles -vobsuboutindex 0 -sid 2
mencoder dvd://1 -oac copy -ovc lavc -lavcopts vcodec=mpeg4:vpass=2 -vobsubout subtitles -vobsuboutindex 1 -sid 5<!--
--></screen>
</example>