1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-11 04:01:31 +00:00

small updates and style improvements

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9233 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2003-02-02 23:56:45 +00:00
parent 0a7f68d845
commit 87b24b391d
4 changed files with 23 additions and 16 deletions

View File

@ -170,12 +170,11 @@
<H3><A NAME="configure">B.4.3 Configure problems</A></H3> <H3><A NAME="configure">B.4.3 Configure problems</A></H3>
If you get errors while running <CODE>./configure</CODE>, or autodetection <P>If you get errors while running <CODE>./configure</CODE>, or autodetection
of something fails, read configure.log maybe you'll find the answer there, of something fails, read <CODE>configure.log</CODE>. You may find the answer
for example multiple versions of the same library mixed on your system, there, for example multiple versions of the same library mixed on your system,
or you forgot to install the development package (those with the -dev suffix). or you forgot to install the development package (those with the -dev suffix). If you think there is a bug, include <CODE>configure.log</CODE> in your bug
If you think there is a bug, then include <CODE>configure.log</CODE> in report.</P>
your bugreport!
<H3><A NAME="compilation">B.4.4 Compilation problems</A></H3> <H3><A NAME="compilation">B.4.4 Compilation problems</A></H3>

View File

@ -312,7 +312,8 @@ MPlayer supports decoding all versions of RealVideo:
MPlayer, the other is in libavcodec. You can invoke each of them with the MPlayer, the other is in libavcodec. You can invoke each of them with the
<CODE>-vc svq1</CODE> and <CODE>-vc ffsvq1</CODE> options respectively. <CODE>-vc svq1</CODE> and <CODE>-vc ffsvq1</CODE> options respectively.
Some files may work with one of them, and not with the other, so test Some files may work with one of them, and not with the other, so test
both decoders. Decoder written (reverse engineered) by the Xine authors.</LI> both decoders. The decoder was written (reverse engineered) by the
<A HREF="http://www.xinehq.de">xine</A> authors.</LI>
<LI>Sorenson 3 (fourcc <I>SVQ3</I>) - decoding supported by <B>Win32 <LI>Sorenson 3 (fourcc <I>SVQ3</I>) - decoding supported by <B>Win32
QuickTime libraries</B></LI> QuickTime libraries</B></LI>
</UL> </UL>

View File

@ -282,6 +282,9 @@
<LI><A HREF="encoding.html#rescaling">7.3 Rescaling movies</A></LI> <LI><A HREF="encoding.html#rescaling">7.3 Rescaling movies</A></LI>
<LI><A HREF="encoding.html#copying">7.4 Stream copying</A></LI> <LI><A HREF="encoding.html#copying">7.4 Stream copying</A></LI>
<LI><A HREF="encoding.html#fixing">7.5 Fixing AVIs with broken index</A></LI> <LI><A HREF="encoding.html#fixing">7.5 Fixing AVIs with broken index</A></LI>
<UL>
<LI><A HREF="encoding.html#appending">7.5.1 Appending multiple AVI files</A></LI>
</UL>
<LI><A HREF="encoding.html#libavcodec">7.6 Encoding with the libavcodec codec family</A></LI> <LI><A HREF="encoding.html#libavcodec">7.6 Encoding with the libavcodec codec family</A></LI>
<LI><A HREF="encoding.html#image_files">7.7 Encoding from multiple input image files (JPEGs or PNGs)</A></LI> <LI><A HREF="encoding.html#image_files">7.7 Encoding from multiple input image files (JPEGs or PNGs)</A></LI>
<LI><A HREF="encoding.html#vobsub">7.8 Extracting DVD subtitles to a Vobsub file</A></LI> <LI><A HREF="encoding.html#vobsub">7.8 Extracting DVD subtitles to a Vobsub file</A></LI>
@ -818,8 +821,9 @@
<H2><A NAME="gui">1.3 What about the GUI?</A></H2> <H2><A NAME="gui">1.3 What about the GUI?</A></H2>
<P>The GUI needs GTK 1.2.x (it isn't fully GTK, but the panels are). The skins are stored <P>The GUI needs GTK 1.2.x (it isn't fully GTK, but the panels are). The skins
in PNG format, so gtk, libpng (and their devel stuff, usually called gtk-dev and libpng-dev) has to be installed. are stored in PNG format, so gtk, libpng (and their devel stuff, usually
called gtk-dev and libpng-dev) has to be installed.
You can build it by specifying <CODE>--enable-gui</CODE> during You can build it by specifying <CODE>--enable-gui</CODE> during
<CODE>./configure</CODE>. Then, to turn on GUI mode, you either</P> <CODE>./configure</CODE>. Then, to turn on GUI mode, you either</P>
<UL> <UL>

View File

@ -157,16 +157,18 @@
<P>Command: <CODE>mencoder -idx input.avi -ovc copy -oac copy -o output.avi</CODE></P> <P>Command: <CODE>mencoder -idx input.avi -ovc copy -oac copy -o output.avi</CODE></P>
<H2><A NAME="appending">7.5.1 Appending multiple AVI files</A></H2>
<P>As a side-effect of fixing broken AVi files, it can be used to fix the <H3><A NAME="appending">7.5.1 Appending multiple AVI files</A></H3>
result of appending 2 (or more) AVI files:</P>
<P>As a side-effect of fixing broken AVI files, MEncoder can be used to fix the
result of appending 2 (or more) AVI files:</P>
<P>Command: <CODE>cat 1.avi 2.avi | mencoder -noidx -ovc copy -oac copy -o output.avi -</CODE></P> <P>Command: <CODE>cat 1.avi 2.avi | mencoder -noidx -ovc copy -oac copy -o output.avi -</CODE></P>
<P>NOTE: It expects 1.avi and 2.avi use the same codecs, resolution, stream <P><B>Note:</B> This expects 1.avi and 2.avi to use the same codecs, resolution,
rate etc, and at least 1.avi be non-broken. You may need to fix your input stream rate etc, and at least 1.avi must not be broken. You may need to fix
AVI files first, as described above at 7.5</P> your input AVI files first, as described <A HREF="#fixing">above</A>.</P>
<H2><A NAME="libavcodec">7.6 Encoding with the libavcodec codec family</A></H2> <H2><A NAME="libavcodec">7.6 Encoding with the libavcodec codec family</A></H2>
@ -232,7 +234,8 @@ Explanation of the process:
&nbsp;&nbsp;<CODE>mencoder -mf on:w=800:h=600:fps=25:type=png -ovc rawrgb &nbsp;&nbsp;<CODE>mencoder -mf on:w=800:h=600:fps=25:type=png -ovc rawrgb
-o output.avi \*.png</CODE></P> -o output.avi \*.png</CODE></P>
<P><B>NOTE:</B> Width must be integer multiple of 4, it's a limitation of the RAW RGB AVI format.</P> <P><B>Note:</B> Width must be integer multiple of 4, it's a limitation of the
RAW RGB AVI format.</P>
<P><I>Creating a Motion PNG (MPNG) file from all the PNG files in the current dir:</I><BR> <P><I>Creating a Motion PNG (MPNG) file from all the PNG files in the current dir:</I><BR>
&nbsp;&nbsp;<CODE>mencoder -mf on:w=800:h=600:fps=25:type=png -ovc copy &nbsp;&nbsp;<CODE>mencoder -mf on:w=800:h=600:fps=25:type=png -ovc copy