source: multimedia/libdriv/x264.xml

trunk
Last change on this file was 181e069f, checked in by Bruce Dubbs <bdubbs@…>, 2 months ago

Tag all perl modules

  • Property mode set to 100644
File size: 4.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
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 x264-download-http "&sources-anduin-http;/x264/x264-&x264-version;.tar.xz">
8 <!ENTITY x264-download-ftp " ">
9 <!ENTITY x264-md5sum "a80f596383ea12bc3137aad84dfb337b">
10 <!ENTITY x264-size "728 KB">
11 <!ENTITY x264-buildsize "12 MB">
12 <!ENTITY x264-time "0.2 SBU (Using parallelism=4)">
13]>
14
15<sect1 id="x264" xreflabel="x264-&x264-version;">
16 <?dbhtml filename="x264.html"?>
17
18
19 <title>x264-&x264-version;</title>
20
21 <indexterm zone="x264">
22 <primary sortas="a-x264">x264</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to x264</title>
27
28 <para>
29 <application>x264</application> package provides a library for encoding
30 video streams into the H.264/MPEG-4 AVC format.
31 </para>
32
33 &lfs121_checked;
34
35 <bridgehead renderas="sect3">Package Information</bridgehead>
36 <itemizedlist spacing="compact">
37 <listitem>
38 <para>
39 Download (HTTP): <ulink url="&x264-download-http;"/>
40 </para>
41 </listitem>
42 <listitem>
43 <para>
44 Download (FTP): <ulink url="&x264-download-ftp;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download MD5 sum: &x264-md5sum;
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download size: &x264-size;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Estimated disk space required: &x264-buildsize;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated build time: &x264-time;
65 </para>
66 </listitem>
67 </itemizedlist>
68
69 <bridgehead renderas="sect3">x264 Dependencies</bridgehead>
70
71 <bridgehead renderas="sect4">Recommended</bridgehead>
72 <para role="recommended">
73 <xref linkend="nasm"/>
74 </para>
75
76 <bridgehead renderas="sect4">Optional</bridgehead>
77 <para role="optional">
78 <ulink url="https://github.com/FFMS/ffms2">ffms2</ulink>,
79 <ulink url="https://github.com/gpac/gpac/releases/">gpac</ulink> or
80 <ulink url="https://github.com/l-smash/l-smash">liblsmash</ulink>
81 </para>
82
83
84 </sect2>
85
86 <sect2 role="installation">
87 <title>Installation of x264</title>
88
89 <note>
90 <para>
91 This package tarball expands to <filename class='directory'>x264</filename>.
92 </para>
93 </note>
94
95 <para>
96 Install <application>x264</application> by running the following
97 commands:
98 </para>
99
100<screen><userinput>./configure --prefix=/usr \
101 --enable-shared \
102 --disable-cli &amp;&amp;
103make</userinput></screen>
104
105 <para>
106 This package does not come with a test suite.
107 </para>
108
109 <para>
110 Now, as the <systemitem class="username">root</systemitem> user:
111 </para>
112
113<screen role="root"><userinput>make install</userinput></screen>
114
115 </sect2>
116
117 <sect2 role="commands">
118 <title>Command Explanations</title>
119
120 <para>
121 <parameter>--disable-cli</parameter>: This switch disables building the
122 command-line encoder which is redundant since it requires FFmpeg for
123 most of the input formats.
124 </para>
125
126 <para>
127 <option>--disable-asm</option>: Use this switch if you didn't install
128 NASM.
129 </para>
130
131 </sect2>
132
133 <sect2 role="content">
134 <title>Contents</title>
135
136 <segmentedlist>
137 <segtitle>Installed Programs</segtitle>
138 <segtitle>Installed Library</segtitle>
139 <segtitle>Installed Directory</segtitle>
140
141 <seglistitem>
142 <seg>
143 None
144 </seg>
145 <seg>
146 libx264.so
147 </seg>
148 <seg>
149 None
150 </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="libx264">
160 <term><filename class="libraryfile">libx264.so</filename></term>
161 <listitem>
162 <para>
163 provides the functions used to encode video streams into the
164 H.264/MPEG-4 AVC format
165 </para>
166 <indexterm zone="x264 libx264">
167 <primary sortas="c-libx264">libx264.so</primary>
168 </indexterm>
169 </listitem>
170 </varlistentry>
171
172 </variablelist>
173
174 </sect2>
175
176</sect1>
Note: See TracBrowser for help on using the repository browser.