]> git.sesse.net Git - mlt/blob - NEWS
Fix version number in release notes :(
[mlt] / NEWS
1 MLT Release Notes
2 -----------------
3
4 Version 0.5.2
5
6 The recommended version of FFmpeg for use with this release is SVN r21322.
7 This is a minor maintenance release, but it is interesting because it now
8 enables usage of libswscale as the default choice for image scaling,
9 image format conversion, and color space conversion. That gives better
10 quality and performance. In addition, there are some improvements in the
11 sdl_preview consumer to make it suitable for use in OpenShot 1.1. Other
12 things:
13
14 * Fixed mlt++/MltFilteredProducer
15 * Fixed playing to the end in Kdenlive (mantis bug 1207)
16 * Fixed crash load uncompressed video
17 * Fixed compiling yadif for non-sse2 builds
18
19
20 Version 0.5.0
21
22 The recommended version of FFmpeg for use with this release is SVN r21322.
23 This is an enhancement release, confined mainly to the modules rather than
24 the framework. In particular, this adds support for VDPAU, YADIF, and HD-SDI
25 technologies!
26
27 configure: added --disable-sse2
28
29 framework:
30 * mlt_cache: added mlt_cache_set_size()
31 * mlt_filter: added data property "service" - set when attached
32 * mlt_frame:
33   - added Doxygen docs
34   - added "previous frame" and "next frame" data properties - available
35     when its producer has _need_previous_next=1
36 * mlt_playlist: added support for negative out point same as length-1
37 * mlt_service:
38   - added mlt_service_cache_purge()
39   - added "_need_previous_next" handling in mlt_service_get_frame()
40   - added firing event "service-changed" in mlt_service_attach()
41
42 modules:
43 * avformat producer:
44   - added decoding H.264 with NVIDIA VDPAU
45     Requires FFmpeg built with vdpau.
46     This is automatically detected and enabled. You can disable this by
47         setting environment variable MLT_NO_VDPAU=1 or property novdpau=1.
48   - added caching of FFmpeg contexts and decoded images
49     This allows large numbers of clips in a project avoiding limitations
50         with number of threads and file descriptors permitted per process.
51     You can disable image caching with property noimagecache=1.
52   - added variant of producer named avformat-novalidate
53   - restored support for video4linux(2)
54 * avformat consumer: added apre, fpre, and vpre preset properties
55 * crop filter: added center_bias integer property
56 * deinterlace filter: added the excellent YADIF as a method
57 * kdenlivetitle producer: added text outlining
58 * linsys/sdi consumer:
59   - added support for HD-SDI
60   - changed name from "linsys_sdi" to just "sdi"
61 * oldfilm filter: added "uneven development" effect
62 * xml producer: add support for unspecified out points
63
64 profiles:
65 * added several missing ATSC (HD) profiles
66 * change descriptions from using Hz to fps
67
68
69 Version 0.4.10
70
71 The recommended version of FFmpeg for use with this release is SVN r19873.
72 This is "hotfix" for the 0.4.8 release that fixes a couple of regression
73 bugs introduced just before the release.
74
75
76 Version 0.4.8
77
78 The recommended version of FFmpeg for use with this release is SVN r19873.
79 This is mainly a maintenance release. Besides bug fixes here are other
80 notable changes.
81
82 modules:
83 * avformat producer:
84   - refactored producer to use much less properties
85   - added support for audio_index=all for linsys_sdi consumer
86   - added force_fps property (does yet not adjust duration)
87 * core/crop: added "center" property to crop filter
88 * linsys_sdi:
89   - added support for >2 audio channels
90   - added property meta.map.audio.<N>.channels=<integer>
91   - added property meta.map.audio.<N>.start=<integer>
92 * qimage/kdenlivetitle: add typewriter effect
93
94
95 Version 0.4.6
96
97 The recommended version of FFmpeg for use with this release is SVN r19873.
98 This release is an enhancement release along with numerous build, A/V synch,
99 concurrency, and other bug fixes.
100
101 configure:  new option --avformat-svn-version
102
103 modules:
104 * avformat: much improved seeking on H.264/MPEG2-TS (AVCHD) (Ivan Schreter)
105 * core: new imageconvert and audioconvert filters (framework refactorization)
106 * linsys: new SDI consumer (Broadcast Centre Europe)
107 * qimage: new kdenlivetitle producer (J.B. Mardelle and Marco Gittler)
108 * sdl: new audio_only consumer for OS X
109
110 mlt++ and swig: update bindings
111
112 framework:
113 * refactored image format conversion
114   mlt_frame.h:
115   - added convert_image() virtual function
116   - added mlt_image_format_name()
117   - removed many mlt_convert_ and scaling/padding functions
118 * refactored audio format conversion
119   mlt_frame.h:
120   - mlt_get_audio() virtual function parameters changed
121   - added convert_audio() virtual function
122   - mlt_frame_get_audio() parameters changed
123   - added mlt_frame_set_audio()
124   - added mlt_audio_format_name()
125   mlt_types.h:
126   - deprecated mlt_audio_pcm
127   - added mlt_audio_s16
128   - added mlt_audio_s32
129   - added mlt_audio_float
130
131
132 Version 0.4.4
133
134 The recommended version of FFmpeg for use with this release is 0.5.0.
135 This release is a minor maintenance update to the 0.4.2 - just build and
136 bug fixes.
137
138 * new configure script options:
139   --swig-languages
140   --rename-melt
141   --mandir
142   --datadir
143 * added man page for melt (not installed)
144 * added invert property to composite transition
145 * added frei0r plugin blacklist, currently only contains facedetect
146 * added Lua binding via SWIG
147
148
149 Version 0.4.2
150
151 The recommended version of FFmpeg for use with this release is 0.5.0.
152 This release is a minor maintenance update to the 0.4.0 - just build and
153 bug fixes.
154
155
156 Version 0.4.0
157
158 The recommended version of FFmpeg for use with this release is 0.5.0.
159
160 This release is primarily a reorganization of the mlt and mlt++ projects.
161 In brief:
162 * "inigo" was renamed "melt"
163 * "westley" is no longer the XML file extension and root element - they are
164   simply "mlt" now
165 * mlt++ is included with mlt and no longer a separate project
166 * miracle, valerie, and humperdink were moved to a new, separate project
167 For details: http://www.mltframework.org/twiki/bin/view/MLT/ExtremeMakeover
168
169 avformat producer improvements:
170 * improve audio synchronization
171 * improve reliability of video playback with FFmpeg newer than v0.5.0
172 * improve seeking performance of DNxHD and HuffYUV
173
174
175 Version 0.3.8
176
177 The recommended version of FFmpeg for use with this release is SVN r17923.
178
179 This almost entirely a bugfix release to coincide with the Kdenlive 0.7.3
180 release. See the ChangeLog (SVN log) for details.
181
182 framework:
183 * added mlt_cache API
184 * improved doxygen documentation comments
185 * added some 15 fps profiles
186 * improved color property handling (support web-style '#' color value)
187 * add const qualifier to many string parameters
188
189 modules:
190 * core: improved brightness filter
191 * core: added image crop filter
192 * frei0r: added support for producer/source plugins
193 * frei0r: added support for color parameters
194 * sdl: added window_background color property
195
196
197 Version 0.3.6
198
199 The recommended version of FFmpeg for use with this release is SVN r16849.
200
201 This almost entirely a bugfix release to coincide with the Kdenlive 0.7.2
202 release. See the ChangeLog (SVN log) for details.
203
204 framework:
205 * added mlt_log logging API
206 * improved doxygen documentation comments
207
208 avformat module:
209 * consumer: report list of muxers when f=list and codecs when acodec=list or
210   vcodec=list
211 * consumer: added support for an=1 or acodec=none and vn=1 or vcodec=none
212 * producer: list available demuxers and decoders when constructor arg is like
213   f-list[[,]acodec-list][[,]vcodec-list]
214
215
216 Version 0.3.4
217
218 The recommended version of FFmpeg for use with this release is SVN r16313.
219
220 This almost entirely a bugfix release. See the ChangeLog (SVN log) for details.
221 There are a few notes:
222
223 framework:
224 * improved doxygen documentation comments (work in progress)
225   published docs are at http://mltframework.org/doxygen/
226
227 avformat module:
228 * added support for AVOption parsing to producer
229 * added filter_swscale as alternative rescaler
230 * added recommended FFmpeg revision to configure option --help
231 * use recommended FFmpeg revision with --avformat-svn on release versions
232 * added configure option --avformat-no-codecs
233 * added configure option --avformat-no-filters
234
235 misc:
236 * new profile atsc_1080i_50
237 * added --disable-sse option to configure script
238 * improved build for OS X and x86-64 and improved handling of mmx/sse
239
240
241 Version 0.3.2
242
243 In addition to bug fixes detailed in the ChangeLog, here is a list of
244 enhancements.
245
246 framework:
247 * deprecated mlt-config; use pkg-config instead
248 * added more HD profiles
249
250 modules:
251 * sdl: added fullscreen property
252 * sox: sox v14.1.0 compatibility
253 * gtk: added force_reload property to producer_pixbuf
254 * frei0r: added support for YAML Tiny metadata
255 * frei0r: added keyframe support on double and boolean parameters
256 * oldfilm: added keyframe support for filter_vignette
257 * kdenlive: added filter_freeze
258
259 inigo:
260 * added -version, -silent, and -progress options
261 * improved output of usage information
262 * removed realtime process scheduling
263
264
265 Version 0.3.0
266
267 framework:
268 * fix bugs with introduction of mlt_profile in v0.2.4
269 * added versioning to libs
270 * remove module registry and add dynamic module loading:
271   added mlt_repository_register, mlt_repository_consumers,
272   mlt_repository_filters, mlt_repository_producers, mlt_repository_transitions
273 * new module metadata system based on YAML Tiny:
274   added mlt_repository_register_metadata, mlt_repository_metadata,
275   mlt_repository_languages, mlt_properties_is_sequence,
276   mlt_properties_parse_yaml, mlt_properties_serialise_yaml, and
277   added metaschema.yaml Kwalify schema file
278 * mlt_consumer: added threaded, non-lossy processing when real_time=-1
279 * added autoclose property to mlt_playlist for sequential processing
280   of very large playlists (prevents resource exhaustion)
281 * mlt_factory_init now returns the global mlt_repository
282 * change mlt_repository_fetch to mlt_repository_create
283 * change mlt_factory_prefix to mlt_factory_directory
284 * added mlt_field_disconnect_service
285
286 modules:
287 * move all modules from $datadir to $libdir
288 * new oldfilm module by Marco Gittler
289 * new frei0r module by Marco Gittler
290 * new dgraft module by Dan Dennedy for inverse telecine (not ready yet)
291 * avformat: added support for multi-threaded encoding and decoding
292 * consumer_avformat: added support for AVOption to support all ffmpeg options
293   using ffmpeg-style property names
294 * consumer_avformat: added support for dual pass encoding
295 * qimage: added support for Qt4
296 * sox: added support for sox v14.0.0
297 * transition_composite: added animatable geometry-type "pan" property to crop
298   and pan instead of automatic down-scale
299
300 inigo:
301 * added -query option to lookup module metadata
302 * added -profile option and support for progress=1 for kdenlive
303
304
305 Version 0.2.4
306
307 * framework: new extensible profiles system to replace MLT_NORMALISATION
308 * module avformat: interlaced coding support for ffmpeg/libavcodec
309 * module avformat: build improvements for --avformat-svn
310 * new effectv module with BurningTV video filter
311 * module qimage: added support for psd, xcf and exr images
312 * numerous bugfixes
313
314
315 Version 0.2.3
316
317 * Addition of kdenlive module
318 * Support for ffmpeg from subversion
319 * Support for ffmpeg libswscale
320 * Copyright and license cleanup
321
322
323 Version 0.2.2
324
325 * Prepared specifically for the kdenlive 0.3 release.
326 * Contains some patches to support rgb24a output for the gdk-pixbuf and qimage
327   producers as well as some minor bugfixes.
328
329
330 Version 0.2.1
331
332 * Many improvements since initial releases due to development of Shotcut and
333   Jahshaka editing interfaces.
334
335
336 Version 0.1.1
337
338 * Minor modifications and bug fixes from the previous release. Better
339   ffmpeg/avformat integration and more reliable playback.
340
341
342 Version 0.1.0
343
344 * First official release