source: multimedia/videoutils/ffmpeg.xml@ 01062dd

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 01062dd was 01062dd, checked in by Bruce Dubbs <bdubbs@…>, 20 years ago

XML update for Chapter 39

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2316 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.3 KB
Line 
1<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
2 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../../general.ent">
4 %general-entities;
5
6 <!ENTITY ffmpeg-download-http "http://prdownloads.sourceforge.net/ffmpeg/ffmpeg-&ffmpeg-version;.tar.gz">
7 <!ENTITY ffmpeg-download-ftp " ">
8 <!ENTITY ffmpeg-size "1.3 MB">
9 <!ENTITY ffmpeg-buildsize "31 MB">
10 <!ENTITY ffmpeg-time "0.89 SBU">
11]>
12
13<sect1 id="ffmpeg" xreflabel="FFmpeg-&ffmpeg-version;">
14<?dbhtml filename="ffmpeg.html"?>
15<title>FFmpeg-&ffmpeg-version;</title>
16
17<sect2>
18<title>Introduction to <application>FFmpeg</application></title>
19
20<para><application>FFmpeg</application> is a solution to record, convert and stream audio and
21video. Due to heavy development, not all of these functions will work.</para>
22
23<sect3><title>Package information</title>
24<itemizedlist spacing='compact'>
25<listitem><para>Download (HTTP): <ulink url="&ffmpeg-download-http;"/></para></listitem>
26<listitem><para>Download (FTP): <ulink url="&ffmpeg-download-ftp;"/></para></listitem>
27<listitem><para>Download size: &ffmpeg-size;</para></listitem>
28<listitem><para>Estimated Disk space required: &ffmpeg-buildsize;</para></listitem>
29<listitem><para>Estimated build time: &ffmpeg-time;</para></listitem></itemizedlist>
30</sect3>
31
32<sect3><title><application>FFmpeg</application> dependencies</title>
33<sect4><title>Optional</title>
34<para><xref linkend="libvorbis"/>, <xref linkend="lame"/>,
35X (<xref linkend="xfree86"/> or <xref linkend="xorg"/>), <xref linkend="SDL"/> and <xref linkend="freetype2"/>
36</para></sect4>
37</sect3>
38
39</sect2>
40
41<sect2>
42<title>Installation of <application>FFmpeg</application></title>
43
44<para>Install <application>FFmpeg</application> by running the following
45commands:</para>
46
47<note><para>The package maintainers recommend compiling without any
48optimizations.</para></note>
49
50<screen><userinput><command>./configure --prefix=/usr --enable-shared &amp;&amp;
51make &amp;&amp;
52make install</command></userinput></screen>
53
54</sect2>
55
56<sect2>
57<title>Command explanations</title>
58
59<para><option>--enable-shared</option>: This switch is needed to
60build <filename class="libraryfile">libavcodec</filename> and <filename
61class="libraryfile">libavformat</filename> shared libraries.</para>
62
63<para><option>--enable-mp3lame</option>: Link against
64<filename class="libraryfile">libmp3lame</filename>.</para>
65
66<para><option>--enable-vorbis</option>: Link against
67<filename class="libraryfile">libvorbis</filename>.</para>
68
69<para><option>--disable-ffplay</option>: Only installs the server part.
70<command>ffplay</command> requires X for building.</para>
71
72</sect2>
73
74<sect2>
75<title>Configuring <application>FFmpeg</application></title>
76
77<sect3><title>Config files</title>
78
79<para><filename>~/.ffmpeg/ffserver-config</filename></para>
80
81<para>You'll find a sample ffserver configuration file at
82<ulink url="http://ffmpeg.sourceforge.net/sample.html"/></para>
83
84</sect3>
85
86</sect2>
87
88<sect2>
89<title>Contents</title>
90
91<para>The <application>FFmpeg</application> package contains <command>ffmpeg
92</command>, <command>ffserver</command>, <command>ffplay</command>,
93<filename class="libraryfile">libavcodec</filename> and
94<filename class="libraryfile">libavformat</filename>.</para>
95
96</sect2>
97
98<sect2><title>Description</title>
99
100<sect3><title>ffmpeg</title>
101<para><command>ffmpeg</command> is a command-line tool to convert video files,
102network streams and input from a TV card to several video formats.</para></sect3>
103
104<sect3><title>ffserver</title>
105<para><command>ffserver</command> is a streaming server for everything
106that <command>ffmpeg</command> could use as input (files, streams, TV card
107input, webcam, etc.).</para></sect3>
108
109<sect3><title>ffplay</title>
110<para><command>ffplay</command> is a very simple and portable media
111player using the <filename>ffmpeg</filename> libraries and the <acronym>SDL
112</acronym> library.</para></sect3>
113
114<sect3><title>libavcodec/libavformat</title>
115<para><filename class="libraryfile">libavcodec</filename> and <filename
116class="libraryfile">libavformats</filename> are libraries for encoding/decoding
117video streams and putting them into files or network packets. Since
118they're well documented, you can easily include them in your software,
119like some other packages already do.</para></sect3>
120
121</sect2>
122
123</sect1>
124
Note: See TracBrowser for help on using the repository browser.