pkgsrc/multimedia
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
..
acidrip *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
adobe-flash-player adobe-flash-player: update to 32.0.0.465. 2020-12-08 13:02:06 +00:00
alevt Avoid version workarounds for EOL netbsd versions. 2020-04-29 21:22:58 +00:00
assimp assimp: adjust a portability patch 2021-01-10 05:20:00 +00:00
audiocd-kio kde applications release: update to 20.12.3 2021-04-07 12:28:14 +00:00
avidemux *: Recursive revbump from audio/pulseaudio-14.2.nb1 2021-02-07 06:30:06 +00:00
bitstream all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
bsdav
ccxstream
cfourcc
clutter-gst *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
dav1d dav1d: Update to 0.8.2 2021-03-14 08:02:58 +00:00
deforaos-player *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
dirac *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
divxplayer *: reset MAINTAINER, email address does not exist anymore. 2020-02-08 17:21:14 +00:00
dragon kde applications release: update to 20.12.3 2021-04-07 12:28:14 +00:00
dumpmpeg
dvb-apps *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
dvd-slideshow *: reset maintainer for darcy 2020-07-13 20:05:11 +00:00
dvd-vr all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
dvdauthor Revbump for openpam cppflags change months ago, belatedly. 2020-12-04 04:55:41 +00:00
dvdbackup revbump for multimedia/libdvdread; requested by leot@ 2020-05-22 12:43:52 +00:00
dvdrip *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
dvdstyler *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
dvdview Resolve socket vs STL conflict 2020-04-17 13:34:47 +00:00
ffmpeg2 Revbump for multimedia/x265 update 2021-04-12 08:29:59 +00:00
ffmpeg2theora *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
ffmpeg3 Revbump for multimedia/x265 update 2021-04-12 08:29:59 +00:00
ffmpeg4 ffmpeg4: updated to 4.4 2021-04-10 08:50:43 +00:00
ffmpegthumbnailer *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
ffmpegthumbs *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
ffplay2 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ffplay3 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ffplay4 ffmpeg4 ffplay4: updated to 4.3.2 2021-02-21 14:35:47 +00:00
flashplayer
flvstreamer all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
frei0r *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
fxtv multimedia/fxtv: remove redundant SUBST block 2020-05-16 15:52:15 +00:00
ggrab multimedia: align variable assignments 2019-11-03 17:11:59 +00:00
gmencoder *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gmp-api
gmplayer gmplayer: regen distinfo for patch-libmpcodecs_ad__spdif.c 2021-04-11 17:13:21 +00:00
gnome-mplayer *: Recursive revbump from audio/pulseaudio-14.2.nb1 2021-02-07 06:30:06 +00:00
gnome-video-effects *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
goggles *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gopchop *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gpac *: Recursive revbump from audio/pulseaudio-14.2.nb1 2021-02-07 06:30:06 +00:00
gst-plugins0.10-bad *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
gst-plugins0.10-base *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
gst-plugins0.10-dvdread *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins0.10-ffmpeg *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins0.10-gnonlin *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins0.10-good *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
gst-plugins0.10-hal *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins0.10-mpeg2dec *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins0.10-ogg
gst-plugins0.10-resindvd *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins0.10-theora
gst-plugins0.10-ugly *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
gst-plugins0.10-v4l2 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins0.10-vp8 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins0.10-x264 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins0.10-xvid *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins1-bad gstreamer1,gst-plugins1-{base,bad}: fix build with GNU make 4.3 2020-07-16 11:27:25 +00:00
gst-plugins1-base *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
gst-plugins1-dvdread revbump for multimedia/libdvdread; requested by leot@ 2020-05-22 12:43:52 +00:00
gst-plugins1-editing-services Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
gst-plugins1-egl-gl *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gst-plugins1-egl-opengl *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gst-plugins1-good gst-plugins1-good: remove unknown configure options 2020-05-25 05:02:11 +00:00
gst-plugins1-gtk *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:17:15 +00:00
gst-plugins1-libav *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
gst-plugins1-mpeg2dec *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gst-plugins1-ogg
gst-plugins1-omx *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
gst-plugins1-resindvd revbump for multimedia/libdvdread; requested by leot@ 2020-05-22 12:43:52 +00:00
gst-plugins1-theora
gst-plugins1-transcoder Needs gobject-introspection 2020-04-19 01:16:37 +00:00
gst-plugins1-ugly gst-plugins1-ugly: remove unknown configure options 2020-05-31 14:47:47 +00:00
gst-plugins1-v4l2 Avoid version workarounds for EOL netbsd versions. 2020-04-29 21:22:58 +00:00
gst-plugins1-vaapi gst-plugins1-vaapi: set PYTHON_FOR_BUILD_ONLY 2021-04-12 13:17:17 +00:00
gst-plugins1-vpx *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gst-plugins1-x264 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
gst123 *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
gstreamer0.10 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
gstreamer1 gstreamer1: GstCheck-1.0.* depend on both the gstcheck and introspection options 2021-01-07 10:09:06 +00:00
gstreamermm1 *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
gtranscode
gxine *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
handbrake hanbdrake: Update to 1.3.3 2021-01-12 12:00:43 +00:00
harvid *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
hwdecode-demos *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
intel-vaapi-driver intel-vaapi-driver: Only for x86 2020-10-20 11:41:37 +00:00
juk kde applications release: update to 20.12.3 2021-04-07 12:28:14 +00:00
kdenlive kde applications release: update to 20.12.3 2021-04-07 12:28:14 +00:00
kmix *: Recursive revbump from audio/pulseaudio-14.2.nb1 2021-02-07 06:30:06 +00:00
kmplayer *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
kscd *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
libaacs
libaom libaom: Fix previous 2020-12-23 15:03:09 +00:00
libass libass: updated to 0.15.0 2020-10-27 18:07:57 +00:00
libassetml *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
libbdplus
libbluray libbluray: update to 1.3.0. 2021-04-13 11:02:33 +00:00
libde265 libde265: remove dependency on deprecated sdl1 library 2021-01-21 18:49:42 +00:00
libdv *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
libdv-tools
libdvbcsa all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libdvbpsi libdvbpsi: Update to 1.3.3 2020-03-24 14:56:46 +00:00
libdvbpsi0 all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
libdvdcss multimedia: align variable assignments 2019-11-03 17:11:59 +00:00
libdvdnav revbump for multimedia/libdvdread; requested by leot@ 2020-05-22 12:43:52 +00:00
libdvdplay revbump for multimedia/libdvdread; requested by leot@ 2020-05-22 12:43:52 +00:00
libdvdread revbump for multimedia/libdvdread; requested by leot@ 2020-05-22 12:43:52 +00:00
libflash *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
libflashsupport libflashsupport: don't bother version checking for EOL netbsd 2020-04-29 20:07:41 +00:00
libhdhomerun multimedia: align variable assignments 2019-11-03 17:11:59 +00:00
libkate Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
libkcddb kde applications release: update to 20.12.3 2021-04-07 12:28:14 +00:00
libkcompactdisc kde applications release: update to 20.12.3 2021-04-07 12:28:14 +00:00
libmatroska libmatroska: updated to 1.6.3 2021-02-18 19:19:59 +00:00
libmediaart *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
libmediainfo mark packages that fail with -Werror=char-subscripts 2020-05-20 06:09:03 +00:00
libmpeg2 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
libmpeg3 *: Convert broken sourceforge HOMEPAGEs back to http 2020-03-20 11:57:53 +00:00
libnms
libogg
liboggz
libtheora
libtheora-docs libtheora-docs: Regenerate PLIST 2020-12-25 22:21:35 +00:00
libtheoraplay Add libtheoraplay version 0.0.20190909 2021-01-24 18:22:25 +00:00
libva Update to 2.6.1 2020-02-05 14:14:49 +00:00
libva-driver-vdpau libva-driver-vdpau: Skip if there's no VDPAU support 2020-10-20 11:56:45 +00:00
libva-utils Update to 2.6.0 2019-12-29 01:32:53 +00:00
libvdpau libvdpau: set PYTHON_FOR_BUILD_ONLY 2021-04-12 13:11:45 +00:00
libvpx libvpx: updated to 1.10.0 2021-04-14 07:02:49 +00:00
lightspark lightspark: Update to 0.8.4.1 2021-03-15 11:04:55 +00:00
lsdvd revbump for multimedia/libdvdread; requested by leot@ 2020-05-22 12:43:52 +00:00
mate-media *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
mediainfo {lib,}mediainfo: update to 20.03 2020-08-03 09:51:28 +00:00
mediatomb *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
mencoder
ming multimedia/php-ming: fix build problem with maintainer-zts 2021-03-07 09:38:58 +00:00
minidlna *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
mjpegtools mjpegtools: add missing REPLACE_BASH. Bump. 2020-08-18 01:09:32 +00:00
mkvtoolnix mkvtoolnix: updated to 56.1.0 2021-04-10 09:29:11 +00:00
mkvtoolnix-old *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
mlt mlt: Update to 6.26.1 2021-04-14 11:19:16 +00:00
movit *: revbump for libsndfile 2020-08-18 17:57:24 +00:00
mp4tools (multimedia/mp4tools) Adhoc build fix. Please correct me, thanks 2020-09-22 05:36:13 +00:00
mp4v2 mp4v2: updated to 4.1.6 2021-04-13 16:32:09 +00:00
mpeg-lib all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
mpeg_encode
mpeg_play
mplayer mplayer: Fix build with multimedia/ffmpeg4-4.4 2021-04-10 13:06:50 +00:00
mplayer-share mplayer: Fix build with multimedia/ffmpeg4-4.4 2021-04-10 13:06:50 +00:00
mplayerthumbs *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
mpv mpv: Update to 0.33.1 2021-04-05 18:14:20 +00:00
nostt revbump after updating security/nettle 2020-05-22 10:55:42 +00:00
obs-studio *: Recursive revbump from audio/pulseaudio-14.2.nb1 2021-02-07 06:30:06 +00:00
ogle *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
ogle_gui *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
ogmtools revbump for multimedia/libdvdread; requested by leot@ 2020-05-22 12:43:52 +00:00
olive-editor *: Recursive revbump from audio/pulseaudio-14.2.nb1 2021-02-07 06:30:06 +00:00
omxplayer *: Recursive revbump from boost-1.75.0 2021-01-01 08:24:33 +00:00
openquicktime mark packages that fail with -Werror=char-subscripts 2020-05-20 06:09:03 +00:00
p5-GStreamer *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
p5-xmltv *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
phonon *: Recursive revbump from audio/pulseaudio-14.2.nb1 2021-02-07 06:30:06 +00:00
phonon-backend-gstreamer phonon-backend-gstreamer: allow use of newer phonon-backend-gstreamer-backend 2021-03-30 09:05:14 +00:00
phonon-backend-gstreamer-shared phonon-{qt5-backend-gstreamer,backend-gstreamer-shared}: update to 4.10.0 2021-03-30 09:03:32 +00:00
phonon-backend-vlc *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
phonon-qt5 phonon-qt5: update to 4.11.1 2021-03-30 08:55:51 +00:00
phonon-qt5-backend-gstreamer phonon-{qt5-backend-gstreamer,backend-gstreamer-shared}: update to 4.10.0 2021-03-30 09:03:32 +00:00
phonon-qt5-backend-vlc phonon-qt5-backend-vlc: update to 0.11.2 2021-03-30 08:59:06 +00:00
php-ming *: Apply revbump for graphics/giflib API change. 2020-06-05 12:48:58 +00:00
pitivi Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
py-enzyme
py-gstreamer0.10 *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
py-gstreamer1 *: recursive bump for libffi 2020-03-08 16:47:24 +00:00
py-m3u8 py-m3u8: updated to 0.8.0 2021-01-15 12:35:36 +00:00
py-ming *: Apply revbump for graphics/giflib API change. 2020-06-05 12:48:58 +00:00
py-mpegdash
regionset
replex multimedia: align variable assignments 2019-11-03 17:11:59 +00:00
ruby-clutter-gstreamer ruby-gnome: update to 3.4.2. 2020-05-02 18:05:03 +00:00
ruby-gstreamer ruby-gnome: update to 3.4.2. 2020-05-02 18:05:03 +00:00
ruby-ming *: Apply revbump for graphics/giflib API change. 2020-06-05 12:48:58 +00:00
schroedinger
sfml *: revbump for libsndfile 2020-08-18 17:57:24 +00:00
sickgear multimedia/sickgear: Add missing py-sqlite3 dependency 2021-03-21 14:20:41 +00:00
smpeg all: migrate homepages from http to https 2020-01-26 17:30:40 +00:00
smpeg2 *: revbump for libsndfile 2020-08-18 17:57:24 +00:00
ssr *: Recursive revbump from audio/pulseaudio-14.2.nb1 2021-02-07 06:30:06 +00:00
streamlink Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
subtitleeditor *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:07:25 +00:00
totem *: Recursive revbump from textproc/icu-68.1 2020-11-05 09:06:42 +00:00
totem-pl-parser totem-pl-parser: Also avoid second version-script 2020-11-18 18:12:16 +00:00
transcode Revbump for multimedia/x265 update 2021-04-12 08:29:59 +00:00
tstools multimedia: align variable assignments 2019-11-03 17:11:59 +00:00
vlc *: bump PKGREVISION for fluidsynth ABI bump 2021-04-05 10:55:28 +00:00
win32-codecs multimedia: align variable assignments 2019-11-03 17:11:59 +00:00
x264-devel *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
x265 x265: updated to 3.5 2021-04-10 08:36:03 +00:00
xawtv *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-mpc-plugin *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xfce4-thunar-media-tags *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xine-lib xine-lib: Fix building v4l2 plugin on NetBSD 2020-12-20 12:53:57 +00:00
xine-ui *: bump PKGREVISION for perl-5.32. 2020-08-31 18:06:29 +00:00
xine-v4l xine-lib: Update to 1.2.11 2020-12-18 23:33:05 +00:00
xine-v4l2 xine-lib: Update to 1.2.11 2020-12-18 23:33:05 +00:00
xvid4conf *: revbump after fontconfig bl3 changes (libuuid removal) 2020-08-17 20:19:01 +00:00
xvidcore xvidcore: Update to 1.3.6 2020-05-16 17:44:15 +00:00
Makefile remove multimedia/tvtime 2021-04-13 08:31:21 +00:00