Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/mkvtoolnix mkvtoolnix: updated to 50.0.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/aab7a2eaec2c
branches:  trunk
changeset: 438694:aab7a2eaec2c
user:      adam <adam%pkgsrc.org@localhost>
date:      Tue Sep 08 13:49:05 2020 +0000

description:
mkvtoolnix: updated to 50.0.0

Version 50.0.0 "Awakenings"

New feature: IETF BCP 47 language tags

* I've written up a [nice FAQ
  entry](https://gitlab.com/mbunkus/mkvtoolnix/-/wikis/Languages-in-Matroska-and-MKVToolNix)
  about the switch to using IETF BCP 47 language tags, how they interact with
  legacy language elements, how the programs actually behave and how to
  disable their use if necessary.
* mkvmerge: IETF BCP 47/RFC 5646 language tags: mkvmerge will now accept full
  BCP 47 language tags for all options taking a language. mkvmerge will always
  write "LanguageIETF" track header elements. If the language tag contains a
  valid ISO 639-2 language code it will also set the legacy "Language" track
  header element to the included ISO 639-2 code.
* mkvmerge: IETF BCP 47/RFC 5646 language tags: if present the "LanguageIETF"
  track header element will be reported as the `language_ietf` property in
  JSON identification mode.
* mkvmerge: IETF BCP 47/RFC 5646 language tags in chapters: mkvmerge will now
  write "ChapLanguageIETF" elements when creating chapter atoms, either when
  reading the simple chapter format or when generating chapters due to the
  `--generate-chapters` command line option.
* mkvmerge: IETF BCP 47/RFC 5646 language tags in tags: mkvmerge will now
  write "TagLanguageIETF" elements when creating "simple tag" elements, either
  when reading tag XML files or when generating them.
* mkvmerge: IETF BCP 47/RFC 5646 language tags: added an option
  `--disable-language-ietf` that causes mkvmerge to only write the legacy
  language elements.
* mkvmerge, mkvpropedit, MKVToolNix GUI's chapter editor: IETF BCP 47/RFC 5646
  language tags in chapters: when reading XML chapter files the programs will
  now add "ChapLanguageIETF" elements for atoms that don't contain them. The
  values are derived from existing "ChapterLanguage" elements.
* mkvpropedit: IETF BCP 47/RFC 5646 language tags: setting/deleting the track
  language now acts on both the old language element as well as the
  "LanguageIETF" track header element.
* mkvpropedit: IETF BCP 47/RFC 5646 language tags: added an option
  `--disable-language-ietf` that causes mkvpropedit to apply changes to the
  `language` track header property only to the legacy language track header
  element.
* mkvinfo: IETF BCP 47/RFC 5646 language tags: added support for the
  "LanguageIETF" track header element.
* MKVToolNix GUI: multiplexer: added full support for IETF BCP 47/RFC 5646
  language tags for both track and chapter languages.
* MKVToolNix GUI: chapter: added full support for IETF BCP 47/RFC 5646
  language tags for chapter languages.
* MKVToolNix GUI: header editor: added full support for IETF BCP 47/RFC 5646
  language tags for track header languages. The header editor allows editing
  of the legacy language elements and the IETF BCP 47 language elements
  independent of each other.

Other new features and enhancements

* mkvmerge: the chapter generation mode `when-appending` now also works with
  the splitting modes `parts:` & `parts-frames:` when using the `…,+…` syntax
  for appending other sections of the source file to the same destination
  file.
* MKVToolNix GUI: multiplexer: the file selection dialogs now include the
  extension `.dtsma` for DTS files.
* mkvmerge: MP4 reader: sped up parsing MP4 DASH files with a lot of segments
  (`trun` atoms) quite a bit.
* The PCRE2 regular expression library is now used instead of `std::regex` for
  big performance improvements in all places where regular expressions are
  used for parsing big chunks of text, e.g. in the subtitle parsers.
* all programs: Windows: all programs now support long file names on Windows
  10 release 1604 if they're turned on in the registry.

Bug fixes

* MKVToolNix GUI: preferences: under certain conditions changing the selected
  entry in the page tree on the left did not cause the page shown on the right
  to be updated.
* mkvmerge: splitting text by a fixed string (e.g. `,`) is now done by using
  `std::string.find()` instead of using a regular-expression-based text
  splitting function, greatly improving its performance.
* mkvmerge: mkvmerge will now read-buffer file I/O when probing text file
  formats which increases its speed significantly on Windows.
* mkvmerge: MP4 reader: fixed handling of `tkhd` atoms of version 1.

Build system changes

* The PCRE2 library (the 8-bit variant) is now required.

diffstat:

 multimedia/mkvtoolnix/Makefile |   5 ++---
 multimedia/mkvtoolnix/distinfo |  10 +++++-----
 2 files changed, 7 insertions(+), 8 deletions(-)

diffs (30 lines):

diff -r df357ce31d5b -r aab7a2eaec2c multimedia/mkvtoolnix/Makefile
--- a/multimedia/mkvtoolnix/Makefile    Tue Sep 08 13:46:58 2020 +0000
+++ b/multimedia/mkvtoolnix/Makefile    Tue Sep 08 13:49:05 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.158 2020/08/18 17:58:10 leot Exp $
+# $NetBSD: Makefile,v 1.159 2020/09/08 13:49:05 adam Exp $
 
-DISTNAME=      mkvtoolnix-49.0.0
-PKGREVISION=   2
+DISTNAME=      mkvtoolnix-50.0.0
 CATEGORIES=    multimedia
 MASTER_SITES=  https://mkvtoolnix.download/sources/
 EXTRACT_SUFX=  .tar.xz
diff -r df357ce31d5b -r aab7a2eaec2c multimedia/mkvtoolnix/distinfo
--- a/multimedia/mkvtoolnix/distinfo    Tue Sep 08 13:46:58 2020 +0000
+++ b/multimedia/mkvtoolnix/distinfo    Tue Sep 08 13:49:05 2020 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.81 2020/08/02 20:22:04 adam Exp $
+$NetBSD: distinfo,v 1.82 2020/09/08 13:49:05 adam Exp $
 
-SHA1 (mkvtoolnix-49.0.0.tar.xz) = 5fc14fa132bbe5f4b1c1c1535e851a1e6d99cd12
-RMD160 (mkvtoolnix-49.0.0.tar.xz) = fbc1eee9b5951ccf1dfb72ab517495f41784be66
-SHA512 (mkvtoolnix-49.0.0.tar.xz) = 087638abea16639d4c452639617d0a183b58bf0496b1c150a46b80a50c15c4a4e9926437dfe002e7f574bd2b72b1e0cf810838c476dd7816bad86ed026e5f4c7
-Size (mkvtoolnix-49.0.0.tar.xz) = 7493996 bytes
+SHA1 (mkvtoolnix-50.0.0.tar.xz) = 7a42d10f2c17abe059db4248e18bde7cebb3599f
+RMD160 (mkvtoolnix-50.0.0.tar.xz) = 22514a0641e11ff70ab9261465162f007fbd47a7
+SHA512 (mkvtoolnix-50.0.0.tar.xz) = ef0c6f4be768e32e3b0887c17d77f8441fd1b19294120c043dd9b2fdd9b76357bea721a156c3e99e0677d2e83dee92ea776df906347a0d44acbc2631b66c73ea
+Size (mkvtoolnix-50.0.0.tar.xz) = 7559852 bytes
 SHA1 (patch-Rakefile) = 94c0a9ae0443f652a87f91cec195fe0d7afb61ac
 SHA1 (patch-src_common_locale.cpp) = 2f3113c8c9171b87a421df447f6c421b1e4dc7e0


Home | Main Index | Thread Index | Old Index