source: multimedia/libdriv/faad2.xml@ 3b10fa8

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 3b10fa8 was 3b10fa8, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Remove obsolete gtk+1, glib1, xmms, gsview.
Return glib2 to latest stable: glib-2.30.1.

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

  • Property mode set to 100644
File size: 5.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY faad2-download-http "&sourceforge-repo;/faac/faad2-&faad2-version;.tar.gz">
8 <!ENTITY faad2-download-ftp "&gentoo-ftp-repo;/faad2-&faad2-version;.tar.gz">
9 <!ENTITY faad2-md5sum "ee1b4d67ea2d76ee52c5621bc6dbf61e">
10 <!ENTITY faad2-size "1.1 MB">
11 <!ENTITY faad2-buildsize "12 MB (without media player plugins)">
12 <!ENTITY faad2-time "0.2 SBU (without media player plugins)">
13]>
14
15<sect1 id="faad2" xreflabel="FAAD2-&faad2-version;">
16 <?dbhtml filename="faad2.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>FAAD2-&faad2-version;</title>
24
25 <indexterm zone="faad2">
26 <primary sortas="a-faad2">faad2</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to FAAD2</title>
31
32 <para><application>FAAD2</application> is a decoder for a lossy sound
33 compression scheme specified in MPEG-2 Part 7 and MPEG-4 Part 3 standards
34 and known as Advanced Audio Coding (AAC).</para>
35
36 &lfs65_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&faad2-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&faad2-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &faad2-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &faad2-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &faad2-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &faad2-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
61 <itemizedlist spacing="compact">
62 <listitem>
63 <para>Sample AAC file: <ulink url="http://www.nch.com.au/acm/sample.aac"/> (7 KB)</para>
64 </listitem>
65 </itemizedlist>
66
67 <!--
68 <bridgehead renderas="sect3">FAAD2 Dependencies</bridgehead>
69
70 <bridgehead renderas="sect4">Optional (to build corresponding AAC plugins)</bridgehead>
71 <para role="optional"><xref linkend="xmms"/> and
72 <ulink url="http://mpeg4ip.sourceforge.net/">mpeg4ip</ulink> (both
73 are untested, and both projects are dead).</para> -->
74
75 <para condition="html" role="usernotes">User Notes:
76 <ulink url="&blfs-wiki;/faad2"/></para>
77
78 </sect2>
79
80 <sect2 role="installation">
81 <title>Installation of FAAD2</title>
82
83 <para>Install <application>FAAD2</application> by running the
84 following commands:</para>
85
86<screen><userinput>./configure --prefix=/usr &amp;&amp;
87make</userinput></screen>
88
89 <para>This package does not come with a test suite. However, basic
90 functionality can be tested by decoding the sample AAC file:</para>
91
92<screen><userinput>./frontend/faad -o sample.wav ../sample.aac</userinput></screen>
93
94 <para>This should display a copyright message and the following
95 information about the sample file:</para>
96
97<literallayout><computeroutput>sample.aac file info:
98ADTS, 4.608 sec, 13 kbps, 16000 Hz
99
100 ---------------------
101 | Config: 2 Ch |
102 ---------------------
103 | Ch | Position |
104 ---------------------
105 | 00 | Left front |
106 | 01 | Right front |
107 ---------------------</computeroutput></literallayout>
108
109 <para>Now play the result (requires the <command>aplay</command> program
110 from the <xref linkend="alsa-utils"/> package):</para>
111
112<screen><userinput>aplay sample.wav</userinput></screen>
113
114 <para><command>aplay</command> should identify the file as
115 <quote>Signed 16 bit Little Endian, Rate 16000 Hz, Stereo</quote>, and you
116 should hear some piano notes.</para>
117
118 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
119
120<screen role="root"><userinput>make install</userinput></screen>
121
122 </sect2>
123
124 <sect2 role="commands">
125 <title>Command Explanations</title>
126
127 <!-- <para><command>./bootstrap</command>: This command runs GNU Autotools
128 to create the <command>configure</command> script and other
129 required build files.</para> -->
130
131 <para><option>--with-drm</option>: This option is supposed to enable
132 support for decoding
133 <ulink url="http://www.drm.org/">Digital Radio Mondiale</ulink>, but
134 actually breaks the base functionality of the package (e.g., the resulting
135 <command>faad</command> program cannot decode the sample AAC file
136 linked above). Don't use it.</para>
137 </sect2>
138
139 <sect2 role="content">
140 <title>Contents</title>
141
142 <segmentedlist>
143 <segtitle>Installed Program</segtitle>
144 <segtitle>Installed Library</segtitle>
145 <segtitle>Installed Directories</segtitle>
146
147 <seglistitem>
148 <seg>faad</seg>
149 <seg>libfaad.{so,a}</seg>
150 <seg>None</seg>
151 </seglistitem>
152 </segmentedlist>
153
154 <variablelist>
155 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
156 <?dbfo list-presentation="list"?>
157 <?dbhtml list-presentation="table"?>
158
159 <varlistentry id="faad-prog">
160 <term><command>faad</command></term>
161 <listitem>
162 <para>is a command-line utility for decoding AAC and MP4 files.</para>
163 <indexterm zone="faad2 faad-prog">
164 <primary sortas="b-faad">faad</primary>
165 </indexterm>
166 </listitem>
167 </varlistentry>
168
169 <varlistentry id="libfaad">
170 <term><filename class='libraryfile'>libfaad.{so,a}</filename></term>
171 <listitem>
172 <para>contains functions for decoding AAC streams.</para>
173 <indexterm zone="faad2 libfaad">
174 <primary sortas="c-libfaad">libfaad.{so,a}</primary>
175 </indexterm>
176 </listitem>
177 </varlistentry>
178
179 </variablelist>
180
181 </sect2>
182
183</sect1>
Note: See TracBrowser for help on using the repository browser.