source: multimedia/libdriv/mlt.xml@ 92cd6b5d

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 92cd6b5d was 5e04f80c, checked in by Douglas R. Reno <renodr@…>, 4 years ago

Update to mlt-6.22.0

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

  • Property mode set to 100644
File size: 5.4 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 mlt-download-http "https://github.com/mltframework/mlt/releases/download/v&mlt-version;/mlt-&mlt-version;.tar.gz">
8 <!ENTITY mlt-download-ftp " ">
9 <!ENTITY mlt-md5sum "f368354154a7e2d8191d6e6f8eb3d475">
10 <!ENTITY mlt-size "1.3 MB">
11 <!ENTITY mlt-buildsize "52 MB">
12 <!ENTITY mlt-time "0.4 SBU">
13]>
14
15<sect1 id="mlt" xreflabel="mlt-&mlt-version;">
16 <?dbhtml filename="mlt.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>MLT-&mlt-version;</title>
24
25 <indexterm zone="mlt">
26 <primary sortas="a-mlt">MLT</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to MLT</title>
31
32 <para>
33 <application>MLT</application> package is the Media Lovin Toolkit.
34 It is an open source multimedia framework, designed and developed for
35 television broadcasting. It provides a toolkit for broadcasters, video
36 editors, media players, transcoders, web streamers and many more types of
37 applications.
38 </para>
39
40 &lfs91_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&mlt-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&mlt-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &mlt-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &mlt-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &mlt-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &mlt-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <bridgehead renderas="sect3">MLT Dependencies</bridgehead>
77
78 <bridgehead renderas="sect4">Required</bridgehead>
79 <para>
80 <xref linkend='frei0r'/> and
81 <xref linkend='qt5'/>
82 </para>
83
84 <bridgehead renderas="sect4">Optional</bridgehead>
85 <para>
86 <xref linkend='doxygen'/>,
87 <xref linkend='fftw'/>,
88 <xref linkend="libexif"/>,
89 <xref linkend="sdl"/>,
90 <xref linkend="sdl2"/>,
91 <ulink url="http://jackaudio.org">JACK</ulink>,
92 <ulink url="http://www.ipswitchft.com/moveit/">MOVEit</ulink>,
93 <ulink url="http://sox.sourceforge.net/">SoX</ulink>,
94 <ulink url="https://github.com/mltframework/swfdec">Swfdec</ulink>, and
95 <ulink url="http://public.hronopik.de/vid.stab/">vid.stab</ulink>
96
97 </para>
98
99 <para condition="html" role="usernotes">User Notes:
100 <ulink url="&blfs-wiki;/mlt"/></para>
101
102 </sect2>
103
104 <sect2 role="installation">
105 <title>Installation of MLT</title>
106
107 <!--
108 <para>
109 First, adapt MLT to changes in Qt-5.15.0:
110 </para>
111
112<screen><userinput remap="pre">sed -i '/#include "graph.h"/a #include &lt;QPainterPath&gt;' src/modules/qt/graph.cpp &amp;&amp;
113sed -i '/#include &lt;QPainter&gt;/a #include &lt;QPainterPath&gt;' src/modules/qt/{filter,producer}_qtext.cpp</userinput></screen>
114 -->
115
116 <para>
117 Install <application>MLT</application> by running the following commands:
118 </para>
119
120<screen><userinput>./configure --prefix=/usr \
121 --enable-gpl \
122 --enable-gpl3 \
123 --enable-opengl \
124 --disable-gtk2 &amp;&amp;
125make</userinput></screen>
126
127 <para>
128 This package does not come with a test suite. However a test .mp4
129 file can be played in a local graphical environment with
130 <command>./src/melt/melt &lt;filename&gt;.mp4</command>.
131 </para>
132
133 <note>
134 <para>
135 This application uses advanced graphical capabilites. In
136 some cases, firmware for your specific graphics adaptor may be needed.
137 See <xref linkend="video-firmware"/> for more information.
138 </para>
139 </note>
140
141 <para>
142 Now, as the <systemitem class="username">root</systemitem> user:
143 </para>
144
145<screen role="root"><userinput>make install</userinput></screen>
146
147 </sect2>
148
149 <sect2 role="content">
150 <title>Contents</title>
151
152 <segmentedlist>
153 <segtitle>Installed Program</segtitle>
154 <segtitle>Installed Libraries</segtitle>
155 <segtitle>Installed Directories</segtitle>
156
157 <seglistitem>
158 <seg>melt</seg>
159 <seg>libmlt.so,
160 libmlt++.so, and
161 over twenty plugins</seg>
162 <seg>/usr/include/mlt,
163 /usr/include/mlt++,
164 /usr/lib/mlt, and
165 /usr/share/mlt
166 </seg>
167 </seglistitem>
168 </segmentedlist>
169
170 <variablelist>
171 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
172 <?dbfo list-presentation="list"?>
173 <?dbhtml list-presentation="table"?>
174
175 <varlistentry id="melt">
176 <term><command>melt</command></term>
177 <listitem>
178 <para>
179 is a test tool for MLT.
180 </para>
181 <indexterm zone="mlt melt">
182 <primary sortas="b-melt">melt</primary>
183 </indexterm>
184 </listitem>
185 </varlistentry>
186
187 </variablelist>
188
189 </sect2>
190
191</sect1>
Note: See TracBrowser for help on using the repository browser.