comparison DOCS/xml/de/encoding-guide.xml @ 24618:29773733d2b5

some whitespace cosmetics rename "BENUTZUNG" -> "GEBRAUCH" for consistency r22201: some clarification about dvb-out playback r22402: Explain how to select all DVB channels on a frequency. r22413: add xvfwopts compdata and vfw2menc documentation and change to better mencoder example r22499: Improve MPlayerOSX building process r22547: use suggestion from Diego r22570: dont start newline with a space and readd subdirectory
author kraymer
date Thu, 27 Sep 2007 22:54:24 +0000
parents cd2e7590e632
children 4afe2f93fb20
comparison
equal deleted inserted replaced
24617:cd2e7590e632 24618:29773733d2b5
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- in sync with r22141 --> 2 <!-- in sync with r22570 -->
3 <!-- missing cosmetic commit 21537 --> 3 <!-- missing cosmetic commit 21537 -->
4 <chapter id="encoding-guide"> 4 <chapter id="encoding-guide">
5 <title>Encodieren mit <application>MEncoder</application></title> 5 <title>Encodieren mit <application>MEncoder</application></title>
6 6
7 <sect1 id="menc-feat-dvd-mpeg4"> 7 <sect1 id="menc-feat-dvd-mpeg4">
4494 <option>-xvfwopts codec=divx.dll</option>. 4494 <option>-xvfwopts codec=divx.dll</option>.
4495 Der FourCC-Code, der von jedem Codec verwendet wird, steht in Klammern. 4495 Der FourCC-Code, der von jedem Codec verwendet wird, steht in Klammern.
4496 </para> 4496 </para>
4497 <informalexample> 4497 <informalexample>
4498 <para> 4498 <para>
4499 Ein Beispiel mit VP3-Kompression: 4499 Ein Beispiel für die Konvertierung eines ISO DVD Trailers in eine
4500 <screen>mencoder dvd://2 -o title2.avi -ovc vfw -xvfwopts codec=vp31vfw.dll -oac copy</screen> 4500 VP5-Flash-Videodatei unter Benutzung der compdata-Bitrateneinstellungen:
4501 <screen>mencoder -dvd-device <replaceable>zeiram.iso</replaceable> dvd://7 -o <replaceable>trailer.flv</replaceable> \
4502 -ovc vfw -xvfwopts codec=vp6vfw.dll:compdata=onepass.mcf -oac mp3lame \
4503 -lameopts cbr:br=64 -af lavcresample=22050 -vf yadif,scale=320:240,flip \
4504 -of lavf -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames
4505 </screen>
4501 </para> 4506 </para>
4502 </informalexample> 4507 </informalexample>
4508
4509 </sect2>
4510
4511 <sect2 id="menc-feat-video-for-windows-bitrate-settings">
4512 <title>Benutzung von vfw2menc, um eine Datei für Codeceinstellungen zu erzeugen</title>
4513
4514 <para>
4515 Um mit Video für Windows Codecs zu encodieren, musst du Bitrate und andere
4516 Optionen setzen. Nach dem Stand der Dinge funktioniert dies für x86
4517 sowohl unter *NIX als auch unter Windows.
4518 </para>
4519
4520 <para>
4521 Zuerst musst du das <application>vfw2menc</application>-Programm erzeugen.
4522 Es befindet sich im Ordner <filename class="directory">TOOLS</filename>
4523 des MPlayer-Sourcebaums.
4524 Um es unter Linux zu erstellen, kann <application>Wine</application> benutzt werden:
4525
4526 <screen>winegcc vfw2menc.c -o vfw2menc -lwinmm -lole32</screen>
4527
4528 Unter <application>MinGW</application> oder <application>Cygwin</application> verwende:
4529
4530 <screen>gcc vfw2menc.c -o vfw2menc.exe -lwinmm -lole32</screen>
4531
4532 Um es unter <application>MSVC</application> zu erstellen, wirst du getopt brauchen.
4533 Getopt findest du im Original-<application>vfw2menc</application>-Archiv, das
4534 es hier gibt:
4535 Das Projekt <ulink url="http://oss.netfarm.it/mplayer-win32.php">MPlayer on win32</ulink>.
4536 </para>
4537
4538 <informalexample>
4539 <para>
4540 Unten steht ein Beispiel für den VP6-Codec.
4541 <screen>vfw2menc -f VP62 -d vp6vfw.dll -s firstpass.mcf</screen>
4542 Dies wird den Konfigurationsdialog des VP6-Codecs öffnen.
4543 Wiederhole diesen Schritt für den zweiten Durchlauf und benutze
4544 <option>-s <replaceable>secondpass.mcf</replaceable></option>.
4545 </para>
4546 </informalexample>
4547
4548 <para>
4549 Windows-Benutzer können
4550 <option>-xvfwopts codec=vp6vfw.dll:compdata=dialog</option>
4551 verwenden, damit der Dialog angezeigt wird, bevor die Encodierung startet.
4552 </para>
4503 </sect2> 4553 </sect2>
4504 </sect1> 4554 </sect1>
4505 4555
4506 4556
4507 <sect1 id="menc-feat-quicktime-7"> 4557 <sect1 id="menc-feat-quicktime-7">