source: multimedia/libdriv/mlt.xml@ fd67949

lazarus trunk
Last change on this file since fd67949 was fd67949, checked in by Bruce Dubbs <bdubbs@…>, 6 weeks ago

Update to mlt-7.24.0.

  • Property mode set to 100644
File size: 4.9 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 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 "08b3604ad071a13fd172f7a18abd610b">
10 <!ENTITY mlt-size "1.6 MB">
11 <!ENTITY mlt-buildsize "28 MB">
12 <!ENTITY mlt-time "0.2 SBU (Using parallelism=4)">
13]>
14
15<sect1 id="mlt" xreflabel="mlt-&mlt-version;">
16 <?dbhtml filename="mlt.html"?>
17
18
19 <title>mlt-&mlt-version;</title>
20
21 <indexterm zone="mlt">
22 <primary sortas="a-mlt">mlt</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to mlt</title>
27
28 <para>
29 The <application>mlt</application> package is the Media Lovin Toolkit.
30 It is an open source multimedia framework, designed and developed for
31 television broadcasting. It provides a toolkit for broadcasters, video
32 editors, media players, transcoders, web streamers and many more types of
33 applications.
34 </para>
35
36 &lfs121_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>
42 Download (HTTP): <ulink url="&mlt-download-http;"/>
43 </para>
44 </listitem>
45 <listitem>
46 <para>
47 Download (FTP): <ulink url="&mlt-download-ftp;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download MD5 sum: &mlt-md5sum;
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download size: &mlt-size;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Estimated disk space required: &mlt-buildsize;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated build time: &mlt-time;
68 </para>
69 </listitem>
70 </itemizedlist>
71
72 <bridgehead renderas="sect3">mlt Dependencies</bridgehead>
73
74 <bridgehead renderas="sect4">Required</bridgehead>
75 <para>
76 <xref linkend='frei0r'/> and
77 <xref linkend='qt6'/>
78 </para>
79
80 <bridgehead renderas="sect4">Optional</bridgehead>
81 <para>
82 <xref linkend='doxygen'/>,
83 <xref linkend='fftw'/>,
84 <xref linkend="libexif"/>,
85 <xref linkend="sdl2"/>,
86 &qt5-deps;,
87 <ulink url="https://jackaudio.org">JACK</ulink>,
88 <ulink url="https://www.ipswitch.com/moveit/">MOVEit</ulink>,
89 <ulink url="https://sox.sourceforge.net/">SoX</ulink>, and
90 <ulink url="http://public.hronopik.de/vid.stab/">vid.stab</ulink>
91
92 </para>
93
94
95 </sect2>
96
97 <sect2 role="installation">
98 <title>Installation of mlt</title>
99
100 <para>
101 Install <application>mlt</application> by running the following commands:
102 </para>
103
104<screen><userinput>mkdir build &amp;&amp;
105cd build &amp;&amp;
106
107cmake -D CMAKE_INSTALL_PREFIX=/usr \
108 -D CMAKE_BUILD_TYPE=Release \
109 -D MOD_QT=OFF \
110 -D MOD_QT6=ON \
111 -W no-dev .. &amp;&amp;
112make</userinput></screen>
113
114 <para>
115 This package does not come with a test suite. However a test .mp4
116 file can be played in a local graphical environment with
117 <command>./out/bin/melt &lt;filename&gt;.mp4</command>.
118 </para>
119
120 <note>
121 <para>
122 This application uses advanced graphical capabilities. In
123 some cases, firmware for your specific graphics adaptor may be needed.
124 See <xref linkend="video-firmware"/> for more information.
125 </para>
126 </note>
127
128 <para>
129 Now, as the <systemitem class="username">root</systemitem> user:
130 </para>
131
132<screen role="root"><userinput>make install</userinput></screen>
133
134 </sect2>
135
136 <sect2 role="content">
137 <title>Contents</title>
138
139 <segmentedlist>
140 <segtitle>Installed Program</segtitle>
141 <segtitle>Installed Libraries</segtitle>
142 <segtitle>Installed Directories</segtitle>
143
144 <seglistitem>
145 <seg>melt-7 and
146 melt (symlink to melt-7)</seg>
147 <seg>libmlt-7.so,
148 libmlt++-7.so, and
149 over twenty plugins</seg>
150 <seg>/usr/include/mlt-7,
151 /usr/lib/mlt-7,
152 /usr/lib/cmake/Mlt7, and
153 /usr/share/mlt-7
154 </seg>
155 </seglistitem>
156 </segmentedlist>
157
158 <variablelist>
159 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
160 <?dbfo list-presentation="list"?>
161 <?dbhtml list-presentation="table"?>
162
163 <varlistentry id="melt">
164 <term><command>melt</command></term>
165 <listitem>
166 <para>
167 is a test tool for mlt
168 </para>
169 <indexterm zone="mlt melt">
170 <primary sortas="b-melt">melt</primary>
171 </indexterm>
172 </listitem>
173 </varlistentry>
174
175 </variablelist>
176
177 </sect2>
178
179</sect1>
Note: See TracBrowser for help on using the repository browser.