source: multimedia/libdriv/gstreamer.xml@ f15e274

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.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 f15e274 was f15e274, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Typo fix. Multimedia.

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

  • Property mode set to 100644
File size: 10.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY gstreamer-download-http "http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-&gstreamer-version;.tar.bz2">
8 <!ENTITY gstreamer-download-ftp "ftp://ftp.gnome.org/pub/GNOME/sources/gstreamer/0.8/gstreamer-&gstreamer-version;.tar.bz2">
9 <!ENTITY gstreamer-md5sum "3a251cf05b794ebac04e18f71e5b26eb">
10 <!ENTITY gstreamer-size "1.4 MB">
11 <!ENTITY gstreamer-buildsize "81.2 MB">
12 <!ENTITY gstreamer-time "3.2 SBU (includes building docs, additional 0.8 SBU to run the test suite)">
13]>
14
15<sect1 id="gstreamer" xreflabel="GStreamer-&gstreamer-version;">
16 <?dbhtml filename="gstreamer.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 <keywordset>
22 <keyword role="package">gstreamer-&gstreamer-version;.tar</keyword>
23 <keyword role="ftpdir">gstreamer</keyword>
24 </keywordset>
25 </sect1info>
26
27 <title>GStreamer-&gstreamer-version;</title>
28
29 <indexterm zone="gstreamer">
30 <primary sortas="a-GStreamer">GStreamer</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to GStreamer</title>
35
36 <para>The <application>GStreamer</application> package contains a streaming
37 media framework that enables applications to share a common set of plugins for
38 things like video decoding and encoding, audio encoding and decoding, audio
39 and video filters, audio visualisation, Web streaming and anything else that
40 streams in real-time or otherwise. It is modelled after research software
41 worked on at the Oregon Graduate Institute.</para>
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>Download (HTTP): <ulink url="&gstreamer-download-http;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download (FTP): <ulink url="&gstreamer-download-ftp;"/></para>
50 </listitem>
51 <listitem>
52 <para>Download MD5 sum: &gstreamer-md5sum;</para>
53 </listitem>
54 <listitem>
55 <para>Download size: &gstreamer-size;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated disk space required: &gstreamer-buildsize;</para>
59 </listitem>
60 <listitem>
61 <para>Estimated build time: &gstreamer-time;</para>
62 </listitem>
63 </itemizedlist>
64
65 <bridgehead renderas="sect3">GStreamer Dependencies</bridgehead>
66
67 <bridgehead renderas="sect4">Required</bridgehead>
68 <para role="required"><xref linkend="glib2"/>,
69 <xref linkend="libxml2"/>,
70 <xref linkend="popt"/></para>
71
72 <bridgehead renderas="sect4">Optional</bridgehead>
73 <para role="optional"><xref linkend="libgnomeui"/>,
74 <xref linkend="python"/> and
75 <ulink url="http://valgrind.kde.org/">Valgrind</ulink></para>
76
77 <bridgehead renderas="sect4">Optional (to Build Documentation)</bridgehead>
78 <para role="optional"><xref linkend="libxslt"/>,
79 <xref linkend="gtk-doc"/>,
80 <xref linkend="tex"/>,
81 <xref linkend="gs"/> or
82 <xref linkend="espgs"/>,
83 <xref linkend="docbook-utils"/>,
84 <ulink url="http://www.xfig.org/">Transfig</ulink> and
85 <ulink url="http://netpbm.sourceforge.net/">Netpbm</ulink></para>
86
87 </sect2>
88
89 <sect2 role="installation">
90 <title>Installation of GStreamer</title>
91
92 <para>Install <application>GStreamer</application> by running the following
93 commands:</para>
94
95<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
96 --localstatedir=/var &amp;&amp;
97make</userinput></screen>
98
99 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
100
101<screen role="root"><userinput>make install &amp;&amp;
102if [ -d /usr/share/doc/gstreamer-&gstreamer-version;/faq/html ]; then
103 chown -v -R root:root \
104 /usr/share/doc/gstreamer-&gstreamer-version;/*/html
105fi &amp;&amp;
106gst-register</userinput></screen>
107
108 </sect2>
109
110 <sect2 role="commands">
111 <title>Command Explanations</title>
112
113 <para><parameter>--localstatedir=/var</parameter>: This switch puts
114 <command>gst-register</command>'s cache in
115 <filename class="directory">/var/cache/gstreamer-0.8</filename>
116 instead of
117 <filename class="directory">/usr/cache/gstreamer-0.8</filename>.</para>
118
119 <para><parameter>--sysconfdir=/etc</parameter>: This switch puts configuration
120 files in <filename class="directory">/etc</filename>
121 instead of <filename class="directory">/usr/etc</filename>.</para>
122
123 <para><command>chown -v -R root:root ...</command>: The documentation is
124 installed with ownerships of the user who untarred and built the package.
125 This command changes the ownerships of the installed documentation files to
126 root:root and is only executed if the documentation files were built and
127 installed.</para>
128
129 </sect2>
130
131 <sect2 role="content">
132 <title>Contents</title>
133
134 <segmentedlist>
135 <segtitle>Installed Programs</segtitle>
136 <segtitle>Installed Libraries</segtitle>
137 <segtitle>Installed Directories</segtitle>
138
139 <seglistitem>
140 <seg>gst-complete, gst-complete-0.8, gst-compprep, gst-compprep-0.8,
141 gst-feedback, gst-feedback-0.8, gst-inspect, gst-inspect-0.8, gst-launch,
142 gst-launch-0.8, gst-md5sum, gst-md5sum-0.8, gst-register, gst-register-0.8,
143 gst-typefind, gst-typefind-0.8, gst-xmllaunch, gst-xmllaunch-0.8,
144 gst-xmlinspect, and gst-xmlinspect-0.8</seg>
145 <seg>libgstcontrol-0.8.[so,a], libgstreamer-0.8.[so,a], and
146 libgst*.[so,a] plugin modules</seg>
147 <seg>/usr/include/gstreamer-0.8, /usr/lib/gstreamer-0.8,
148 /usr/share/doc/gstreamer-&gstreamer-version;,
149 /usr/share/gtk-doc/html/gstreamer-0.8,
150 /usr/share/gtk-doc/html/gstreamer-libs-0.8, and /var/cache/gstreamer-0.8</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="gst-complete">
160 <term><command>gst-complete-0.8</command></term>
161 <listitem>
162 <para>is a utility enabling <command>bash</command> to provide
163 context sensitive tab completion for <command>gst-launch</command>
164 command lines.</para>
165 <indexterm zone="gstreamer gst-complete">
166 <primary sortas="b-gst-complete">gst-complete-0.8</primary>
167 </indexterm>
168 </listitem>
169 </varlistentry>
170
171 <varlistentry id="gst-compprep">
172 <term><command>gst-compprep-0.8</command></term>
173 <listitem>
174 <para>builds a registry of <application>GStreamer</application>
175 elements and their features that is used by
176 <command>gst-complete</command>.</para>
177 <indexterm zone="gstreamer gst-compprep">
178 <primary sortas="b-gst-compprep">gst-compprep-0.8</primary>
179 </indexterm>
180 </listitem>
181 </varlistentry>
182
183 <varlistentry id="gst-feedback">
184 <term><command>gst-feedback-0.8</command></term>
185 <listitem>
186 <para>generates debug info for <application>GStreamer</application>
187 bug reports.</para>
188 <indexterm zone="gstreamer gst-feedback">
189 <primary sortas="b-gst-feedback">gst-feedback-0.8</primary>
190 </indexterm>
191 </listitem>
192 </varlistentry>
193
194 <varlistentry id="gst-inspect">
195 <term><command>gst-inspect-0.8</command></term>
196 <listitem>
197 <para>prints information about a
198 <application>GStreamer</application> plugin or element.</para>
199 <indexterm zone="gstreamer gst-inspect">
200 <primary sortas="b-gst-inspect">gst-inspect-0.8</primary>
201 </indexterm>
202 </listitem>
203 </varlistentry>
204
205 <varlistentry id="gst-launch">
206 <term><command>gst-launch-0.8</command></term>
207 <listitem>
208 <para>is a tool that builds and runs basic
209 <application>GStreamer</application> pipelines.</para>
210 <indexterm zone="gstreamer gst-launch">
211 <primary sortas="b-gst-launch">gst-launch-0.8</primary>
212 </indexterm>
213 </listitem>
214 </varlistentry>
215
216 <varlistentry id="gst-md5sum">
217 <term><command>gst-md5sum-0.8</command></term>
218 <listitem>
219 <para>generates MD5 checksums of the data generated by a
220 <application>GStreamer</application> pipeline.</para>
221 <indexterm zone="gstreamer gst-md5sum">
222 <primary sortas="b-gst-md5sum">gst-md5sum-0.8</primary>
223 </indexterm>
224 </listitem>
225 </varlistentry>
226
227 <varlistentry id="gst-register">
228 <term><command>gst-register-0.8</command></term>
229 <listitem>
230 <para>is used to register all the <application>GStreamer</application>
231 plugins on the system. It creates a listing of their properties so that when a
232 <application>GStreamer</application> based application is started, it
233 does not need to load plugins until it needs them.</para>
234 <indexterm zone="gstreamer gst-register">
235 <primary sortas="b-gst-register">gst-register-0.8</primary>
236 </indexterm>
237 </listitem>
238 </varlistentry>
239
240 <varlistentry id="gst-typefind">
241 <term><command>gst-typefind-0.8</command></term>
242 <listitem>
243 <para>uses the <application>GStreamer</application> type finding
244 system to determine the relevant <application>GStreamer</application>
245 plugin to parse or decode a file, and determine the corresponding
246 MIME type.</para>
247 <indexterm zone="gstreamer gst-typefind">
248 <primary sortas="b-gst-typefind">gst-typefind-0.8</primary>
249 </indexterm>
250 </listitem>
251 </varlistentry>
252
253 <varlistentry id="gst-xmlinspect">
254 <term><command>gst-xmlinspect-0.8</command></term>
255 <listitem>
256 <para>prints information about a <application>GStreamer</application>
257 plugin or element in XML document format.</para>
258 <indexterm zone="gstreamer gst-xmlinspect">
259 <primary sortas="b-gst-xmlinspect">gst-xmlinspect-0.8</primary>
260 </indexterm>
261 </listitem>
262 </varlistentry>
263
264 <varlistentry id="gst-xmllaunch">
265 <term><command>gst-xmllaunch-0.8</command></term>
266 <listitem>
267 <para>is used to build and run a basic <application>GStreamer</application>
268 pipeline, loading it from an XML description.</para>
269 <indexterm zone="gstreamer gst-xmllaunch">
270 <primary sortas="b-gst-xmllaunch">gst-xmllaunch-0.8</primary>
271 </indexterm>
272 </listitem>
273 </varlistentry>
274
275 </variablelist>
276
277 </sect2>
278
279</sect1>
Note: See TracBrowser for help on using the repository browser.