source: multimedia/libdriv/x264.xml@ e36541d

12.1 ken/TL2024 lazarus trunk xry111/llvm18
Last change on this file since e36541d was ab4fdfc, checked in by Pierre Labastie <pierre.labastie@…>, 5 months ago

Change all xml decl to encoding=utf-8

  • Property mode set to 100644
File size: 4.3 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 "24eb4eae0d6358f31228c9ff86046c6f">
10 <!ENTITY x264-size "673 KB">
11 <!ENTITY x264-buildsize "14 MB">
12 <!ENTITY x264-time "0.3 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 &lfs120_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 <para>
90 Install <application>x264</application> by running the following
91 commands:
92 </para>
93
94<screen><userinput>./configure --prefix=/usr \
95 --enable-shared \
96 --disable-cli &amp;&amp;
97make</userinput></screen>
98
99 <para>
100 This package does not come with a test suite.
101 </para>
102
103 <para>
104 Now, as the <systemitem class="username">root</systemitem> user:
105 </para>
106
107<screen role="root"><userinput>make install</userinput></screen>
108
109 </sect2>
110
111 <sect2 role="commands">
112 <title>Command Explanations</title>
113
114 <para>
115 <parameter>--disable-cli</parameter>: This switch disables building the
116 command-line encoder which is redundant since it requires FFmpeg for
117 most of the input formats.
118 </para>
119
120 <para>
121 <option>--disable-asm</option>: Use this switch if you didn't install
122 NASM.
123 </para>
124
125 </sect2>
126
127 <sect2 role="content">
128 <title>Contents</title>
129
130 <segmentedlist>
131 <segtitle>Installed Programs</segtitle>
132 <segtitle>Installed Library</segtitle>
133 <segtitle>Installed Directory</segtitle>
134
135 <seglistitem>
136 <seg>
137 None
138 </seg>
139 <seg>
140 libx264.so
141 </seg>
142 <seg>
143 None
144 </seg>
145 </seglistitem>
146 </segmentedlist>
147
148 <variablelist>
149 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
150 <?dbfo list-presentation="list"?>
151 <?dbhtml list-presentation="table"?>
152
153 <varlistentry id="libx264">
154 <term><filename class="libraryfile">libx264.so</filename></term>
155 <listitem>
156 <para>
157 provides the functions used to encode video streams into the
158 H.264/MPEG-4 AVC format
159 </para>
160 <indexterm zone="x264 libx264">
161 <primary sortas="c-libx264">libx264.so</primary>
162 </indexterm>
163 </listitem>
164 </varlistentry>
165
166 </variablelist>
167
168 </sect2>
169
170</sect1>
Note: See TracBrowser for help on using the repository browser.