pkgsrc/multimedia/mlt/PLIST
nia f42f225ec7 mlt: Update to 6.26.1
Version 6.26.1

This version fixes a major regression in the avformat producer to read from
network URLs.


Version 6.26.0

This is the last planned release of major version 6. Version 7 will be released
soon and introduce some minor API breakage while removing deprecations.
The main new feature in this version is hardware-accellerated decoding!
However, this is a basic implementation: It always returns the uncompressed
video to the CPU memory with no pipelining to filters. Even when coupled with
hardware encoding in the avformat consumer it must transfer the video. Also,
there is no automatic software/CPU fallback and no resource management.

Modules
  * Added support for `hwaccel` query string parameter to the `avformat`
    producer. It accepts the following values:
    vaapi (Linux/BSD), cuda (Linux), videotoolbox (macOS), d3d11va (Windows), dxva2 (Windows)
  * Added support for `hwaccel_device` query string parameter to the `avformat`
    producer. This is only used with vaapi (device path) and cuda, d3d11va, or
    dxva (number).
  * Improved the usage of image slice threading in `frei0r`. This only applies
    when `threads`=0 and only works with some frei0r plugins that you must decide
    yourself.
  * Added an ellipse item to `kdenlivetitle` producer.
  * Added support for PNG and GIF as album art in the `avformat` producer.
  * Added BT.2020 color space metadata to the `avformat` producer.
  * Resolved many FFmpeg deprecations in the `avformat` producer making it possible to support AV1 decoding.
  * Added a `strobe` fitler that periodically makes the alpha channel transparent.
  * Added a new `typewriter` text filter (currently only works with the
    kdenlivetitle producer).
  * Improved sound quality for lower pitch shifts in `rbpitch`.
  * Fixed speed of trick play in the `jack`, `rtaudio`, `sdl_audio`, and `sdl2_audio` consumers.
  * Fixed matrix for independent channels in `swresample` filter.
  * Fixed leading zeros for the `timer` filter.
  * Fixed flickering using `affine` with a `luma` transition.
  * Fixed a crash using RGBA images in the `qimage` producer (regression in v6.22.0).
  * Fixed `brightness` filter misbehaves on `alpha` > 1.
  * Fixed writing `flac` format file does not set its duration in the `avformat` consumer.
  * Fixed an infinite loop in `rbpitch` filter.
  * Fixed `ttl` in the `qimage` producer.
  * Fixed building with OpenCV 4.5
  * Fixed artifacts with multiple HTML `qtext` filters and frame threading.
  * Deprecated the `start` and `end` properties on the following (use property
    animation instead):
    - brightness
    - panner
    - boxblur
    - wave
    - volume
  * Deprecated the following services:
    - data_show
    - region
    - transition filter
    - autotrack_rectangle
    - motion_est
    - slowmotion

Other
  * CMake:
    - Fixed building without SWIG.
    - Added many "MOD_..." options to explictly disable modules.
    - Added src/tests and the option `BUILD_TESTING`, which defaults off.
    - All dependency checks moved to top level CMakeLists.txt.
    - Install melt man page.
    - Install oldfilm SVG files.
    - Added src/examples.
    - Install framework/metaschema.yaml.
    - Fixed `plusgpl` datadir.
    - Added all swwig/ languages.
    - Increased C++ standard to C++14.
  * Added an `AV1` encoding preset.
  * Improved documentation of the requirement for C11.
  * The minimum version of FFmpeg is v4.0 and Libav is no longer supported.


Version 6.24.0

This version is mostly fixes plus a few new filters.

Framework
  * Trigger a `property-changed` event on `mlt_properties_pass_list`.
  * Fixed using a video transition with a video clip on an audio track.
  * Reduce the amount of service caching to 2X #tracks to reduce memory usage.

Modules
  * Added the `pillar_echo` filter to the plus module.
  * Added a `qtcrop` filter to the qt module.
  * Added `html`, `resource`, `overflow-y`, and `_hide` properties to the `qtext` filter for rich text.
  * Added the filter `choppy` to the core module.
  * Added slice threading to the `brightness` filter.
  * Fixed compiling with OpenCV 4.
  * Fixed the colors when using `mlt_image_format=rgb24a` with `avformat` consumer.
  * Fixed using WebVfx in a Docker container.
  * Fixed a possible crash in the `timewarp` producer on sources with non-integer frame rates.
  * Fixed a regression in version 6.22 with multiple affine filters at the same time.
  * Fixed possible abort or deadlock on recursive pthread mutexes in `avformat` producer.
  * Fixed a crash in `crop` filter with large `center_bias` value when `use_profile` is 1.
  * Fixed a white video frame appearing on threaded rendering in `freeze` filter.
  * Fixed MLT XML DRD to permit empty playlists, which may occur on empty tracks in a multitrack.
  * Fixed initializing QApplication in the `qimage` producer.
  * Fixed interpolation when scaling with the `affine` rect and geomety properties.
  * Fixed high memory usage with high factors of pitch shifting in the `rbpitch` filter.
  * Fixed a crash on files with more than 32 streams in the `avformat` producer.

Other
  * Fixed CMake build on MSYS2 and Windows Craft.
  * Added the Python binding to the CMake build.
  * Added the `sdl` (v1) module to the CMake build.
  * Removed minrate and maxrate from the `webm` avformat consumer preset.


Version 6.22.1 - July 30, 2020

This patch version only fixes the version reported in the CMake build.


Version 6.22.0 - July 30, 2020

This version fixes bugs associated with the preview scaling introduced in the
previous version.

Framework
  * Added mlt_properties_exists() and Mlt::Properties::property_exists().
  * Added mlt_audio C class with:
    - mlt_audio_new()
	- mlt_audio_close()
	- mlt_audio_set_values()
	- mlt_audio_get_values()
	- mlt_audio_alloc_data()
	- mlt_audio_calculate_size()
	- mlt_audio_plane_count()
	- mlt_audio_plane_size()
	- mlt_audio_get_planes()
	- mlt_audio_shrink()
	- mlt_audio_reverse()
	- mlt_audio_copy()
	- mlt_audio_calculate_frame_samples()
	- mlt_audio_calculate_samples_to_position()
	- mlt_audio_channel_layout_name()
	- mlt_audio_channel_layout_id()
	- mlt_audio_channel_layout_channels()
	- mlt_audio_channel_layout_default()
  * Added Mlt::Audio C++ class with:
    - Mlt::Audio::Audio()
	- Mlt::Audio::Audio(mlt_audio_s*)
	- Mlt::Audio::~Audio()
	- Mlt::Audio::data()
	- Mlt::Audio::set_data(void*)
	- Mlt::Audio::frequency()
	- Mlt::Audio::set_frequency(int)
	- Mlt::Audio::format()
	- Mlt::Audio::set_format(mlt_audio_format)
	- Mlt::Audio::samples()
	- Mlt::Audio::set_samples(int)
	- Mlt::Audio::channels()
	- Mlt::Audio::set_channels(int)
	- Mlt::Audio::layout()
	- Mlt::Audio::set_layout(mlt_channel_layout)
  * Fixed drop-frame timecode for 59.94 fps.
  * Fixed crash on null pointer passed to mlt_consumer_stop().

Modules
  * Fixed frei0r transitions with preview scaling.
  * Fixed affine ox and oy properties incorrect with preview scaling.
  * Fixed a crash and incorrect preview scaling with more than one affine
    filter active on the same frame.
  * Fixed preview scaling for the rotoscoping filter.
  * Added the sample_fmt property to the avformat consumer.
  * Fixed a possible segfault in the mix transition.
  * Removed support for text keyframes to the text and qtext filters
    to fix regression on strings containing '='.
  * Disable frame-threading with bigsh0t, distort0r, and medians frei0r plugins.
  * Added "meta.media.%d.stream.projection" property the avformat producer.
  * Fixed a crash with with filters not supporting preview scale in frei0r
    transitions.
  * Fix artifacts in luma transition and affine filter with frame-threading.
  * Stop including 'title="Anonymous Submission"' in xml consumer.
  * Fixed a crash in opencv.tracker filter.
  * Fixed a crash in composite transition if luma file fails to load.
  * Added validations in opengl module to prevent asserts in Movit.
  * Fixed building with OpenCV 4.
  * Moved some services from gtk2 module to new gdk module:
    - gtkrescale filter
	- pango producer
	- pixbuf producer
  * Deprecated the gtk2 module and no longer enabled by default.
  * Changed avformat producer to accept a '?' in argument/resource property
    by escaping it as '\?'.
  * Changed the background property of the affine filter to be mutable.
  * Deprecated the linsys (DVEO SDI) module.
  * Fixed changing the audio_index property in the avformat producer.
  * Changed resample filter to more resiliant to frequency changes.
  * Added a video_delay property to the sdl2_audio and rtaudio consumers.
  * Add millisecond options to the timer filter.
  * Fixed the in point handling for the timewarp producer.
  * Fixed some audio gaps and sync issues with the rbpitch filter and timewarp
    pitch compensation.
  * Fixed a possible crash caused by producer consumer.
  * Changed avformat consumer to set AVOption color_primaries based on the
    MLT colorspace if not already set as property.
  * Fixed crop right on image with odd width skews image in crop filter.
  * Fixed incorrect silence value for unsigned 8-bit audio in avformat producer.
  * Changed qimage to use Qt's internal orientation detection instead of libexif.
  * Reduced clicks in mix transition by silencing buffers on discontinuity.
  * Improved A/V synchronization in (sw)resample filters - also reduces audio clicks.
  * Improved speed of the qimage producer.
  * Fixed incorrect color using libx264rgb in avformat consumer.
  * Fixed relative paths for avfilters that have the "filename" option.
  * Fixed some avfilters dropping the alpha channel: smartblur, vaguedenoiser.
  * Improved performance of the resize filter.
  * Fixed an affine filter inside a transition was always nearest neighbor
    interpolation.
  * Changed the lift_gamma_gain filter to use round values up.

Other
  * Fixed melt option "-group" applies to an implicit consumer.
  * Added "-quiet" option to melt (implies -silent but more so).
  * CMake build improvments adding modules:
    - gdk
	- jackrack
	- lumas
	- resample
	- sox
	- vorbis
  * Added avformat consumer presets:
    - Slide-Deck-H264
	- Slide-Deck-HEVC
  * Removed intra=1 from some avformat presets (use g=1 for intra only):
    - intermediate/MPEG-2
	- intermediate/MPEG-4
	- lossless/H.264
  * Fixed using Qt, Movit, and WebVfx in the official docker image:
    https://hub.docker.com/repository/docker/mltframework/melt
	IMPORTANT: it now requires `docker run` with the `--init` option.
2021-04-14 11:19:16 +00:00

430 lines
16 KiB
Text

@comment $NetBSD: PLIST,v 1.6 2021/04/14 11:19:16 nia Exp $
bin/melt
include/mlt++/Mlt.h
include/mlt++/MltAnimation.h
include/mlt++/MltAudio.h
include/mlt++/MltConfig.h
include/mlt++/MltConsumer.h
include/mlt++/MltDeque.h
include/mlt++/MltEvent.h
include/mlt++/MltFactory.h
include/mlt++/MltField.h
include/mlt++/MltFilter.h
include/mlt++/MltFilteredConsumer.h
include/mlt++/MltFilteredProducer.h
include/mlt++/MltFrame.h
include/mlt++/MltGeometry.h
include/mlt++/MltMultitrack.h
include/mlt++/MltParser.h
include/mlt++/MltPlaylist.h
include/mlt++/MltProducer.h
include/mlt++/MltProfile.h
include/mlt++/MltProperties.h
include/mlt++/MltPushConsumer.h
include/mlt++/MltRepository.h
include/mlt++/MltService.h
include/mlt++/MltTokeniser.h
include/mlt++/MltTractor.h
include/mlt++/MltTransition.h
include/mlt/framework/mlt.h
include/mlt/framework/mlt_animation.h
include/mlt/framework/mlt_audio.h
include/mlt/framework/mlt_cache.h
include/mlt/framework/mlt_consumer.h
include/mlt/framework/mlt_deque.h
include/mlt/framework/mlt_events.h
include/mlt/framework/mlt_factory.h
include/mlt/framework/mlt_field.h
include/mlt/framework/mlt_filter.h
include/mlt/framework/mlt_frame.h
include/mlt/framework/mlt_geometry.h
include/mlt/framework/mlt_log.h
include/mlt/framework/mlt_luma_map.h
include/mlt/framework/mlt_multitrack.h
include/mlt/framework/mlt_parser.h
include/mlt/framework/mlt_playlist.h
include/mlt/framework/mlt_pool.h
include/mlt/framework/mlt_producer.h
include/mlt/framework/mlt_profile.h
include/mlt/framework/mlt_properties.h
include/mlt/framework/mlt_property.h
include/mlt/framework/mlt_repository.h
include/mlt/framework/mlt_service.h
include/mlt/framework/mlt_slices.h
include/mlt/framework/mlt_tokeniser.h
include/mlt/framework/mlt_tractor.h
include/mlt/framework/mlt_transition.h
include/mlt/framework/mlt_types.h
include/mlt/framework/mlt_version.h
lib/libmlt++.so
lib/libmlt++.so.3
lib/libmlt++.so.${PKGVERSION}
lib/libmlt.so
lib/libmlt.so.6
lib/libmlt.so.${PKGVERSION}
lib/mlt/libmltavformat.so
lib/mlt/libmltcore.so
lib/mlt/libmltdecklink.so
lib/mlt/libmltfrei0r.so
lib/mlt/libmltgdk.so
lib/mlt/libmltjackrack.so
lib/mlt/libmltkdenlive.so
lib/mlt/libmltmotion_est.so
lib/mlt/libmltnormalize.so
lib/mlt/libmltoldfilm.so
lib/mlt/libmltopengl.so
lib/mlt/libmltplus.so
lib/mlt/libmltplusgpl.so
lib/mlt/libmltqt.so
lib/mlt/libmltresample.so
lib/mlt/libmltsdl2.so
lib/mlt/libmltsox.so
lib/mlt/libmltvideostab.so
lib/mlt/libmltvmfx.so
lib/mlt/libmltvorbis.so
lib/mlt/libmltxine.so
lib/mlt/libmltxml.so
lib/pkgconfig/mlt++.pc
lib/pkgconfig/mlt-framework.pc
share/mlt/avformat/blacklist.txt
share/mlt/avformat/consumer_avformat.yml
share/mlt/avformat/producer_avformat.yml
share/mlt/avformat/yuv_only.txt
share/mlt/core/consumer_multi.yml
share/mlt/core/data_fx.properties
share/mlt/core/filter_audiomap.yml
share/mlt/core/filter_audiowave.yml
share/mlt/core/filter_brightness.yml
share/mlt/core/filter_channelcopy.yml
share/mlt/core/filter_choppy.yml
share/mlt/core/filter_crop.yml
share/mlt/core/filter_data_show.yml
share/mlt/core/filter_fieldorder.yml
share/mlt/core/filter_gamma.yml
share/mlt/core/filter_greyscale.yml
share/mlt/core/filter_luma.yml
share/mlt/core/filter_mask_apply.yml
share/mlt/core/filter_mask_start.yml
share/mlt/core/filter_mirror.yml
share/mlt/core/filter_mono.yml
share/mlt/core/filter_obscure.yml
share/mlt/core/filter_panner.yml
share/mlt/core/filter_region.yml
share/mlt/core/filter_rescale.yml
share/mlt/core/filter_resize.yml
share/mlt/core/filter_transition.yml
share/mlt/core/filter_watermark.yml
share/mlt/core/loader.dict
share/mlt/core/loader.ini
share/mlt/core/producer_colour.yml
share/mlt/core/producer_consumer.yml
share/mlt/core/producer_hold.yml
share/mlt/core/producer_loader.yml
share/mlt/core/producer_melt.yml
share/mlt/core/producer_melt_file.yml
share/mlt/core/producer_noise.yml
share/mlt/core/producer_timewarp.yml
share/mlt/core/producer_tone.yml
share/mlt/core/transition_composite.yml
share/mlt/core/transition_luma.yml
share/mlt/core/transition_matte.yml
share/mlt/core/transition_mix.yml
share/mlt/core/transition_region.yml
share/mlt/decklink/consumer_decklink.yml
share/mlt/decklink/producer_decklink.yml
share/mlt/feeds/NTSC/data_fx.properties
share/mlt/feeds/NTSC/etv.properties
share/mlt/feeds/NTSC/obscure.properties
share/mlt/feeds/PAL/border.properties
share/mlt/feeds/PAL/data_fx.properties
share/mlt/feeds/PAL/etv.properties
share/mlt/feeds/PAL/example.properties
share/mlt/feeds/PAL/obscure.properties
share/mlt/frei0r/blacklist.txt
share/mlt/frei0r/filter_cairoblend_mode.yml
share/mlt/frei0r/not_thread_safe.txt
share/mlt/frei0r/param_name_map.yaml
share/mlt/frei0r/resolution_scale.yml
share/mlt/gdk/filter_rescale.yml
share/mlt/gdk/producer_pango.yml
share/mlt/gdk/producer_pixbuf.yml
share/mlt/jackrack/blacklist.txt
share/mlt/jackrack/consumer_jack.yml
share/mlt/jackrack/filter_jack.yml
share/mlt/jackrack/filter_jackrack.yml
share/mlt/jackrack/filter_ladspa.yml
share/mlt/jackrack/producer_ladspa.yml
share/mlt/kdenlive/filter_boxblur.yml
share/mlt/kdenlive/filter_freeze.yml
share/mlt/kdenlive/filter_wave.yml
share/mlt/kdenlive/producer_framebuffer.yml
share/mlt/metaschema.yaml
share/mlt/motion_est/filter_autotrack_rectangle.yml
share/mlt/motion_est/filter_motion_est.yml
share/mlt/motion_est/filter_vismv.yml
share/mlt/motion_est/producer_slowmotion.yml
share/mlt/normalize/filter_audiolevel.yml
share/mlt/normalize/filter_volume.yml
share/mlt/oldfilm/dust1.svg
share/mlt/oldfilm/dust2.svg
share/mlt/oldfilm/dust3.svg
share/mlt/oldfilm/dust4.svg
share/mlt/oldfilm/dust5.svg
share/mlt/oldfilm/fdust.svg
share/mlt/oldfilm/filter_dust.yml
share/mlt/oldfilm/filter_grain.yml
share/mlt/oldfilm/filter_lines.yml
share/mlt/oldfilm/filter_oldfilm.yml
share/mlt/oldfilm/filter_tcolor.yml
share/mlt/oldfilm/filter_vignette.yml
share/mlt/oldfilm/grain.svg
share/mlt/oldfilm/lines.svg
share/mlt/oldfilm/oldfilm.svg
share/mlt/oldfilm/tcolor.svg
share/mlt/oldfilm/vignette.svg
share/mlt/opengl/filter_movit_blur.yml
share/mlt/opengl/filter_movit_deconvolution_sharpen.yml
share/mlt/opengl/filter_movit_diffusion.yml
share/mlt/opengl/filter_movit_flip.yml
share/mlt/opengl/filter_movit_glow.yml
share/mlt/opengl/filter_movit_lift_gamma_gain.yml
share/mlt/opengl/filter_movit_mirror.yml
share/mlt/opengl/filter_movit_opacity.yml
share/mlt/opengl/filter_movit_rect.yml
share/mlt/opengl/filter_movit_saturation.yml
share/mlt/opengl/filter_movit_vignette.yml
share/mlt/opengl/filter_movit_white_balance.yml
share/mlt/opengl/transition_movit_luma.yml
share/mlt/opengl/transition_movit_mix.yml
share/mlt/opengl/transition_movit_overlay.yml
share/mlt/plus/consumer_blipflash.yml
share/mlt/plus/filter_affine.yml
share/mlt/plus/filter_charcoal.yml
share/mlt/plus/filter_dance.yml
share/mlt/plus/filter_dynamic_loudness.yml
share/mlt/plus/filter_dynamictext.yml
share/mlt/plus/filter_fft.yml
share/mlt/plus/filter_invert.yml
share/mlt/plus/filter_lift_gamma_gain.yml
share/mlt/plus/filter_loudness.yml
share/mlt/plus/filter_loudness_meter.yml
share/mlt/plus/filter_lumakey.yml
share/mlt/plus/filter_pillar_echo.yml
share/mlt/plus/filter_rgblut.yml
share/mlt/plus/filter_sepia.yml
share/mlt/plus/filter_spot_remover.yml
share/mlt/plus/filter_strobe.yml
share/mlt/plus/filter_text.yml
share/mlt/plus/filter_timer.yml
share/mlt/plus/producer_blipflash.yml
share/mlt/plus/producer_count.yml
share/mlt/plus/transition_affine.yml
share/mlt/plusgpl/consumer_cbrts.yml
share/mlt/plusgpl/filter_burningtv.yml
share/mlt/plusgpl/filter_lumaliftgaingamma.yml
share/mlt/plusgpl/filter_rotoscoping.yml
share/mlt/presets/consumer/avformat/AAC
share/mlt/presets/consumer/avformat/ALAC
share/mlt/presets/consumer/avformat/AV1
share/mlt/presets/consumer/avformat/FLAC
share/mlt/presets/consumer/avformat/Flash
share/mlt/presets/consumer/avformat/GIF
share/mlt/presets/consumer/avformat/MJPEG
share/mlt/presets/consumer/avformat/MP3
share/mlt/presets/consumer/avformat/MPEG-2
share/mlt/presets/consumer/avformat/MPEG-4
share/mlt/presets/consumer/avformat/MPEG-4-ASP
share/mlt/presets/consumer/avformat/Slide-Deck-H264
share/mlt/presets/consumer/avformat/Slide-Deck-HEVC
share/mlt/presets/consumer/avformat/Sony-PSP
share/mlt/presets/consumer/avformat/Vorbis
share/mlt/presets/consumer/avformat/WAV
share/mlt/presets/consumer/avformat/WMA
share/mlt/presets/consumer/avformat/WMV
share/mlt/presets/consumer/avformat/XDCAM-HD422
share/mlt/presets/consumer/avformat/YouTube
share/mlt/presets/consumer/avformat/alpha/Quicktime Animation
share/mlt/presets/consumer/avformat/alpha/Ut Video
share/mlt/presets/consumer/avformat/alpha/vp8
share/mlt/presets/consumer/avformat/alpha/vp9
share/mlt/presets/consumer/avformat/atsc_1080i_50/DNxHD
share/mlt/presets/consumer/avformat/atsc_1080i_5994/DNxHD
share/mlt/presets/consumer/avformat/atsc_1080p_2398/DNxHD
share/mlt/presets/consumer/avformat/atsc_1080p_24/DNxHD
share/mlt/presets/consumer/avformat/atsc_1080p_25/DNxHD
share/mlt/presets/consumer/avformat/atsc_1080p_2997/DNxHD
share/mlt/presets/consumer/avformat/atsc_1080p_30/DNxHD
share/mlt/presets/consumer/avformat/atsc_1080p_50/DNxHD
share/mlt/presets/consumer/avformat/atsc_1080p_5994/DNxHD
share/mlt/presets/consumer/avformat/atsc_1080p_60/DNxHD
share/mlt/presets/consumer/avformat/atsc_720p_2398/DNxHD
share/mlt/presets/consumer/avformat/atsc_720p_50/DNxHD
share/mlt/presets/consumer/avformat/atsc_720p_5994/DNxHD
share/mlt/presets/consumer/avformat/atsc_720p_60/DNxHD
share/mlt/presets/consumer/avformat/dv_ntsc/D10
share/mlt/presets/consumer/avformat/dv_ntsc/DV
share/mlt/presets/consumer/avformat/dv_ntsc/DVCPRO50
share/mlt/presets/consumer/avformat/dv_ntsc/DVD
share/mlt/presets/consumer/avformat/dv_ntsc_wide/D10
share/mlt/presets/consumer/avformat/dv_ntsc_wide/DV
share/mlt/presets/consumer/avformat/dv_ntsc_wide/DVCPRO50
share/mlt/presets/consumer/avformat/dv_ntsc_wide/DVD
share/mlt/presets/consumer/avformat/dv_pal/D10
share/mlt/presets/consumer/avformat/dv_pal/DV
share/mlt/presets/consumer/avformat/dv_pal/DVCPRO50
share/mlt/presets/consumer/avformat/dv_pal/DVD
share/mlt/presets/consumer/avformat/dv_pal_wide/D10
share/mlt/presets/consumer/avformat/dv_pal_wide/DV
share/mlt/presets/consumer/avformat/dv_pal_wide/DVCPRO50
share/mlt/presets/consumer/avformat/dv_pal_wide/DVD
share/mlt/presets/consumer/avformat/hdv_1080_25p/HDV
share/mlt/presets/consumer/avformat/hdv_1080_30p/HDV
share/mlt/presets/consumer/avformat/hdv_1080_50i/HDV
share/mlt/presets/consumer/avformat/hdv_1080_60i/HDV
share/mlt/presets/consumer/avformat/hdv_720_25p/HDV
share/mlt/presets/consumer/avformat/hdv_720_30p/HDV
share/mlt/presets/consumer/avformat/hdv_720_50p/HDV
share/mlt/presets/consumer/avformat/hdv_720_60p/HDV
share/mlt/presets/consumer/avformat/intermediate/DNxHR-HQ
share/mlt/presets/consumer/avformat/intermediate/MJPEG
share/mlt/presets/consumer/avformat/intermediate/MPEG-2
share/mlt/presets/consumer/avformat/intermediate/MPEG-4
share/mlt/presets/consumer/avformat/intermediate/ProRes
share/mlt/presets/consumer/avformat/intermediate/ProRes HQ
share/mlt/presets/consumer/avformat/intermediate/ProRes-Kostya
share/mlt/presets/consumer/avformat/lossless/FFV1
share/mlt/presets/consumer/avformat/lossless/H.264
share/mlt/presets/consumer/avformat/lossless/HuffYUV
share/mlt/presets/consumer/avformat/lossless/Ut Video
share/mlt/presets/consumer/avformat/stills/BMP
share/mlt/presets/consumer/avformat/stills/DPX
share/mlt/presets/consumer/avformat/stills/JPEG
share/mlt/presets/consumer/avformat/stills/PNG
share/mlt/presets/consumer/avformat/stills/PPM
share/mlt/presets/consumer/avformat/stills/TGA
share/mlt/presets/consumer/avformat/stills/TIFF
share/mlt/presets/consumer/avformat/vp9
share/mlt/presets/consumer/avformat/webm
share/mlt/presets/consumer/avformat/webm-pass1
share/mlt/presets/consumer/avformat/x264-medium
share/mlt/presets/consumer/avformat/x264-medium-baseline
share/mlt/presets/consumer/avformat/x264-medium-main
share/mlt/presets/consumer/avformat/x264-medium-pass1
share/mlt/presets/consumer/avformat/x265-medium
share/mlt/presets/consumer/avformat/x265-medium-pass1
share/mlt/presets/filter/brightness/from_black
share/mlt/presets/filter/brightness/to_black
share/mlt/presets/filter/movit.blur/blur_in
share/mlt/presets/filter/movit.blur/blur_in_out
share/mlt/presets/filter/movit.blur/blur_out
share/mlt/presets/filter/movit.opacity/fade_in
share/mlt/presets/filter/movit.opacity/fade_in_out
share/mlt/presets/filter/movit.opacity/fade_out
share/mlt/presets/filter/volume/fade_in
share/mlt/presets/filter/volume/fade_out
share/mlt/profiles/atsc_1080i_50
share/mlt/profiles/atsc_1080i_5994
share/mlt/profiles/atsc_1080i_60
share/mlt/profiles/atsc_1080p_2398
share/mlt/profiles/atsc_1080p_24
share/mlt/profiles/atsc_1080p_25
share/mlt/profiles/atsc_1080p_2997
share/mlt/profiles/atsc_1080p_30
share/mlt/profiles/atsc_1080p_50
share/mlt/profiles/atsc_1080p_5994
share/mlt/profiles/atsc_1080p_60
share/mlt/profiles/atsc_720p_2398
share/mlt/profiles/atsc_720p_24
share/mlt/profiles/atsc_720p_25
share/mlt/profiles/atsc_720p_2997
share/mlt/profiles/atsc_720p_30
share/mlt/profiles/atsc_720p_50
share/mlt/profiles/atsc_720p_5994
share/mlt/profiles/atsc_720p_60
share/mlt/profiles/cif_15
share/mlt/profiles/cif_ntsc
share/mlt/profiles/cif_pal
share/mlt/profiles/cvd_ntsc
share/mlt/profiles/cvd_pal
share/mlt/profiles/dv_ntsc
share/mlt/profiles/dv_ntsc_wide
share/mlt/profiles/dv_pal
share/mlt/profiles/dv_pal_wide
share/mlt/profiles/hdv_1080_25p
share/mlt/profiles/hdv_1080_30p
share/mlt/profiles/hdv_1080_50i
share/mlt/profiles/hdv_1080_60i
share/mlt/profiles/hdv_720_25p
share/mlt/profiles/hdv_720_30p
share/mlt/profiles/hdv_720_50p
share/mlt/profiles/hdv_720_60p
share/mlt/profiles/qcif_15
share/mlt/profiles/qcif_ntsc
share/mlt/profiles/qcif_pal
share/mlt/profiles/qhd_1440p_2398
share/mlt/profiles/qhd_1440p_24
share/mlt/profiles/qhd_1440p_25
share/mlt/profiles/qhd_1440p_2997
share/mlt/profiles/qhd_1440p_30
share/mlt/profiles/qhd_1440p_50
share/mlt/profiles/qhd_1440p_5994
share/mlt/profiles/qhd_1440p_60
share/mlt/profiles/quarter_15
share/mlt/profiles/quarter_ntsc
share/mlt/profiles/quarter_ntsc_wide
share/mlt/profiles/quarter_pal
share/mlt/profiles/quarter_pal_wide
share/mlt/profiles/sdi_486i_5994
share/mlt/profiles/sdi_486p_2398
share/mlt/profiles/square_1080p_30
share/mlt/profiles/square_1080p_60
share/mlt/profiles/square_ntsc
share/mlt/profiles/square_ntsc_wide
share/mlt/profiles/square_pal
share/mlt/profiles/square_pal_wide
share/mlt/profiles/svcd_ntsc
share/mlt/profiles/svcd_ntsc_wide
share/mlt/profiles/svcd_pal
share/mlt/profiles/svcd_pal_wide
share/mlt/profiles/uhd_2160p_2398
share/mlt/profiles/uhd_2160p_24
share/mlt/profiles/uhd_2160p_25
share/mlt/profiles/uhd_2160p_2997
share/mlt/profiles/uhd_2160p_30
share/mlt/profiles/uhd_2160p_50
share/mlt/profiles/uhd_2160p_5994
share/mlt/profiles/uhd_2160p_60
share/mlt/profiles/vcd_ntsc
share/mlt/profiles/vcd_pal
share/mlt/profiles/vertical_hd_30
share/mlt/profiles/vertical_hd_60
share/mlt/qt/filter_audiospectrum.yml
share/mlt/qt/filter_audiowaveform.yml
share/mlt/qt/filter_lightshow.yml
share/mlt/qt/filter_qtblend.yml
share/mlt/qt/filter_qtcrop.yml
share/mlt/qt/filter_qtext.yml
share/mlt/qt/filter_typewriter.yml
share/mlt/qt/producer_kdenlivetitle.yml
share/mlt/qt/producer_qimage.yml
share/mlt/qt/producer_qtext.yml
share/mlt/qt/transition_qtblend.yml
share/mlt/qt/transition_vqm.yml
share/mlt/resample/filter_resample.yml
share/mlt/sdl2/consumer_sdl2.yml
share/mlt/sdl2/consumer_sdl2_audio.yml
share/mlt/sox/filter_sox.yml
share/mlt/sox/filter_sox_effect.yml
share/mlt/videostab/filter_videostab.yml
share/mlt/videostab/filter_videostab2.yml
share/mlt/vmfx/filter_chroma.yml
share/mlt/vmfx/filter_chroma_hold.yml
share/mlt/vmfx/filter_mono.yml
share/mlt/vmfx/filter_shape.yml
share/mlt/vmfx/producer_pgm.yml
share/mlt/vorbis/producer_vorbis.yml
share/mlt/xml/consumer_xml.yml
share/mlt/xml/mlt-xml.dtd
share/mlt/xml/producer_xml-nogl.yml
share/mlt/xml/producer_xml-string.yml
share/mlt/xml/producer_xml.yml