summaryrefslogtreecommitdiffstats
path: root/DOCS/xml/de/mencoder.xml
diff options
context:
space:
mode:
authorkraymer <kraymer@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-23 22:51:42 +0000
committerkraymer <kraymer@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-23 22:51:42 +0000
commitfa7754e2f50b61df0ab8fd5d53f59b1439737782 (patch)
tree1a3482c236b879a8e2a3ec1403a51392aacf59b7 /DOCS/xml/de/mencoder.xml
parentd8b0acaa871f2eec274f2171dd0ca7eea95fb13e (diff)
downloadmpv-fa7754e2f50b61df0ab8fd5d53f59b1439737782.tar.bz2
mpv-fa7754e2f50b61df0ab8fd5d53f59b1439737782.tar.xz
r21078: add a link to Michael's de-interlacing filters, and replace the crappy
pp=fd video filter with yadif as it's soooo much better r21079: Add a new MPEG encoding example using lavf r21152: typo: Bitrate is printed in kb/s, not Mb/s on the status line. r21153: Miscellaneous updates for the introduction and the requirements section. r21154: Remove outdated and superfluous sound card section. r21155: Remove outdated and superfluous video cards section. r21168: x264 supports interlaced encoding for some time git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21183 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS/xml/de/mencoder.xml')
-rw-r--r--DOCS/xml/de/mencoder.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/DOCS/xml/de/mencoder.xml b/DOCS/xml/de/mencoder.xml
index 56c6b74800..861510bf79 100644
--- a/DOCS/xml/de/mencoder.xml
+++ b/DOCS/xml/de/mencoder.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- in sync with r20876 -->
+<!-- in sync with r21079 -->
<chapter id="mencoder">
<title>Allgemeiner Gebrauch von <application>MEncoder</application></title>
@@ -427,6 +427,12 @@ geeigneten MPEG1-Datei, wie etwa auf Standard-Windows-Installationen:
mencoder <replaceable>input.avi</replaceable> -of mpeg -mpegopts format=mpeg1:tsaf:muxrate=2000 -o <replaceable>output.mpg</replaceable> -oac lavc -ovc lavc \
-lavcopts acodec=mp2:abitrate=224:vcodec=mpeg1video:vbitrate=1152:keyint=15:mbd=2:aspect=4/3
</screen>
+Das gleiche bei Benutzung des MPEG-Muxers von <systemitem class="library">libavformat</systemitem>:
+<screen>
+mencoder <replaceable>input.avi</replaceable> -of lavf -lavfopts format=mpg:i_certify_that_my_video_stream_does_not_use_b_frames \
+-ovc lavc -lavcopts vcodec=mpeg1video:vrc_buf_size=327:keyint=15:vrc_maxrate=1152:vbitrate=1152:vmax_b_frames=0 \
+-o VCD.mpg -ofps 25 -vf scale=352:288,harddup -oac lavc -lavcopts acodec=mp2:abitrate=224
+</screen>
</para>
</informalexample>