Skip to content

Commit eff5543

Browse files
author
Jenkins CI
committed
Preparing v26.01
1 parent 2b6373c commit eff5543

21 files changed

Lines changed: 74 additions & 54 deletions

File tree

History_DLL.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ x Correction
77
bug reports and feature request are here:
88
https://sourceforge.net/p/mediainfo/_list/tickets
99

10+
Version 26.01, 2026-02-02
11+
-------------
12+
+ More coherency/integrity checks, sponsored by Austrian Mediathek
13+
+ MXF: fix crash with some 0 byte audio packets
14+
+ MPEG-4: C2PA support
15+
+ ID3v2: support of Olympus voice recorder metadata
16+
+ Matroska: show block addition tracks
17+
+ Matroska: add timecode label readout
18+
+ Add default language string for ISO 639-2 special codes, thanks to cjee21
19+
+ AVI/WAV: add support for WAVE_FORMAT_MPEG_HEAAC (0x1610)
20+
+ AV1: Enable parsing raw OBU from network, thanks to cjee21
21+
+ AV1: Indicate usage of Film Grain Synthesis, thanks to cjee21
22+
+ Bindings: add C#/PowerShell (Windows/Linux) support, thanks to cjee21
23+
+ Matroska/TimeCodeXML: add frame rate
24+
x Matroska: fix incoherent readout of unordered tag elements
25+
x TimeCodeXml output: fix lack of frame number with some MXF SDTI timecodes
26+
x AVI/WAV: fix crash with some invalid FourCC
27+
x SDP: fix false-positive detection
28+
x I2469, CDP: fix handling of 708 streams caught in the middle
29+
1030
Version 25.10, 2025-11-05
1131
-------------
1232
+ MXF: crosscheck of ADM profiles

Project/CMake/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ project(MediaInfoLib)
44

55
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake/modules")
66

7-
set(MediaInfoLib_MAJOR_VERSION 25)
8-
set(MediaInfoLib_MINOR_VERSION 10)
7+
set(MediaInfoLib_MAJOR_VERSION 26)
8+
set(MediaInfoLib_MINOR_VERSION 01)
99
set(MediaInfoLib_PATCH_VERSION 0)
1010
set(MediaInfoLib_VERSION ${MediaInfoLib_MAJOR_VERSION}.${MediaInfoLib_MINOR_VERSION})
1111

Project/GNU/Library/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dnl #########################################################################
55
dnl -------------------------------------------------------------------------
66
dnl Name and version
77
dnl
8-
AC_INIT([libmediainfo], [25.10])
8+
AC_INIT([libmediainfo], [26.01])
99

1010
dnl -------------------------------------------------------------------------
1111
dnl Test if we are at the good place

Project/GNU/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Contributor: hydro <hydro@freenet.de>
44

55
pkgname=('libmediainfo' 'python-mediainfo')
6-
pkgver=25.10
6+
pkgver=26.01
77
pkgrel=1
88
pkgdesc="shared library for mediainfo"
99
arch=('i686' 'x86_64')

Project/GNU/libmediainfo.dsc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Format: 3.0 (quilt)
22
Source: libmediainfo
33
Binary: libmediainfo-dev, libmediainfo0, python-mediainfodll, python3-mediainfodll, libmediainfo-doc libmediainfo0-dbg
44
Architecture: any all
5-
Version: 25.10-1
5+
Version: 26.01-1
66
Maintainer: MediaArea.net SARL <info@mediaarea.net>
77
Homepage: http://MediaArea.net/MediaInfo
88
Standards-Version: 3.9.6
@@ -16,11 +16,11 @@ Package-List:
1616
python-mediainfodll deb python optional arch=all
1717
python3-mediainfodll deb python optional arch=all
1818
Checksums-Sha1:
19-
0000000000000000000000000000000000000000 000000 libmediainfo_25.10.orig.tar.xz
20-
0000000000000000000000000000000000000000 000000 libmediainfo_25.10-1.debian.tar.xz
19+
0000000000000000000000000000000000000000 000000 libmediainfo_26.01.orig.tar.xz
20+
0000000000000000000000000000000000000000 000000 libmediainfo_26.01-1.debian.tar.xz
2121
Checksums-Sha256:
22-
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_25.10.orig.tar.xz
23-
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_25.10-1.debian.tar.xz
22+
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_26.01.orig.tar.xz
23+
0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_26.01-1.debian.tar.xz
2424
Files:
25-
00000000000000000000000000000000 000000 libmediainfo_25.10.orig.tar.xz
26-
00000000000000000000000000000000 000000 libmediainfo_25.10-1.debian.tar.xz
25+
00000000000000000000000000000000 000000 libmediainfo_26.01.orig.tar.xz
26+
00000000000000000000000000000000 000000 libmediainfo_26.01-1.debian.tar.xz

Project/GNU/libmediainfo.spec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
%global libmediainfo_version 25.10
2-
%global libmediainfo_version_major 25
3-
%global libmediainfo_version_minor 10
1+
%global libmediainfo_version 26.01
2+
%global libmediainfo_version_major 26
3+
%global libmediainfo_version_minor 01
44
%global libzen_version 0.4.41
55
%global libzen_version_major 0
66
%global libzen_version_minor 4
@@ -385,7 +385,7 @@ rm -f %{buildroot}%{_libdir}/%{name_without_0_ending}.la
385385
%endif
386386

387387
%changelog
388-
* Sun Jan 01 2012 MediaArea.net SARL <info@mediaarea.net> - 25.10-0
388+
* Sun Jan 01 2012 MediaArea.net SARL <info@mediaarea.net> - 26.01-0
389389
- See History.txt for more info and real dates
390390
- Previous packages made by Toni Graffy <toni@links2linux.de>
391391
- Fedora style made by Vasiliy N. Glazov <vascom2@gmail.com>

Project/JavaScript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "libmediainfo",
33
"description": "Get most relevant technical and tag data for video and audio files (emscripten port of the library)",
4-
"version": "25.10",
4+
"version": "26.1",
55
"keywords": [
66
"mediainfo"
77
],

Project/MSVC2022/Example/HowToUse.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <winresrc.h>
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 25,10,0,0
5-
PRODUCTVERSION 25,10,0,0
4+
FILEVERSION 26,01,0,0
5+
PRODUCTVERSION 26,01,0,0
66
FILEFLAGSMASK 0x3fL
77
#ifdef _DEBUG
88
FILEFLAGS 0x1L
@@ -19,10 +19,10 @@ BEGIN
1919
BEGIN
2020
VALUE "CompanyName", "MediaArea.net"
2121
VALUE "FileDescription", "Most relevant technical and tag data for video and audio files"
22-
VALUE "FileVersion", "25.10.0.0"
22+
VALUE "FileVersion", "26.01.0.0"
2323
VALUE "LegalCopyright", "Copyright (C) 2002-2025 MediaArea.net SARL"
2424
VALUE "ProductName", "MediaInfo"
25-
VALUE "ProductVersion", "25.10.0.0"
25+
VALUE "ProductVersion", "26.01.0.0"
2626
END
2727
END
2828
BLOCK "VarFileInfo"

Project/MSVC2022/ShellExtension/MediaInfoShellExt.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <winresrc.h>
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 25,10,0,0
5-
PRODUCTVERSION 25,10,0,0
4+
FILEVERSION 26,01,0,0
5+
PRODUCTVERSION 26,01,0,0
66
FILEFLAGSMASK 0x3fL
77
#ifdef _DEBUG
88
FILEFLAGS 0x1L
@@ -19,10 +19,10 @@ BEGIN
1919
BEGIN
2020
VALUE "CompanyName", "MediaArea.net"
2121
VALUE "FileDescription", "Most relevant technical and tag data for video and audio files"
22-
VALUE "FileVersion", "25.10.0.0"
22+
VALUE "FileVersion", "26.01.0.0"
2323
VALUE "LegalCopyright", "Copyright (C) 2002-2025 MediaArea.net SARL"
2424
VALUE "ProductName", "MediaInfo"
25-
VALUE "ProductVersion", "25.10.0.0"
25+
VALUE "ProductVersion", "26.01.0.0"
2626
END
2727
END
2828
BLOCK "VarFileInfo"

Project/OBS/deb12.debian/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
libmediainfo (25.10-1) experimental; urgency=medium
1+
libmediainfo (26.01-1) experimental; urgency=medium
22

3-
* Upstream version 25.10
3+
* Upstream version 26.01
44
For details, see https://github.com/MediaArea/MediaInfoLib/blob/master/History_DLL.txt
55

66
-- MediaArea <info@mediaarea.net> Mon, 02 Nov 2015 10:30:00 +0100

0 commit comments

Comments
 (0)