diff --git a/Changes.txt b/Changes.txt index 7c294116f..68ee2d686 100644 --- a/Changes.txt +++ b/Changes.txt @@ -1,6 +1,12 @@ I changed some elements in the interface. No break in binary compatibily (no crash), but some details. +0.7.99 --> 17.10 +----------------- +- Version scheme is now YY.MM (year dot month, 2 digits each) +- New MediaInfo XML output, with XSD, more suitable for automatic parsing. Use Option("Inform", "OLDXML") for keeping previous behavior +- WAV: GUID display was with first 8 bytes in wrong order, they are in correct order now + 0.7.98 --> 0.7.99 ----------------- - AAC: CodecID includes audioObjectType (decimal) diff --git a/History_DLL.txt b/History_DLL.txt index a3606d2d3..3e8a753de 100644 --- a/History_DLL.txt +++ b/History_DLL.txt @@ -7,6 +7,30 @@ x Correction bug reports and feature request are here: https://sourceforge.net/p/mediainfo/_list/tickets +Version 17.10, 2017-11-02 +-------------- ++ We need your support! Visit https://mediaarea.net/SupportUs ++ Version scheme is now YY.MM (year dot month, 2 digits each) ++ New MediaInfo XML output, with XSD, more suitable for automatic parsing. Use Option("Inform", "OLDXML") for keeping previous behavior ++ New "Info_OutputFormats" option for listing supported output formats ++ Universal Ad ID: refactored display, better display of value and registry, XML name slightly modified ++ MOV: support of HDR metadata (MasteringDisplayColorVolume, MaxCLL, MaxFALL) ++ BWF: display of UMID and loudness info ++ AAC: show program_config_element in trace ++ MPEG Audio: frame rate info ++ PCM in WAV and Matroska: Support of ValidBitsPerSample ++ I197, EBUCore: 1.8 output uses now final version of XSD and final XSD location ++ Matroska: tweaking frame rate empirical detection for some corner cases +x I1070, LAME 3.100 info tag was incorrectly parsed +x B1068, MPEG Audio: Incoherent duration between General and Audio parts, Audio part duration fixed +x Matroska: showing "A_MS/ACM" Matroska CodecID +x MXF: Fix crash with some buggy files +x MXF: was not well supporting MXF referencing only 1 file +x PCM in WAV: 8-bit content is unsigned and without endianess +x PCM in WAV and Matroska: More coherency between Wave info and ExtensibleWave Info (bitdepth, sign) +x WAV: GUID display was with first 8 bytes in wrong order +x Several crash fixes + Version 0.7.99, 2017-09-11 -------------- + EBUCore: JSON output (--Output=EBUCore_1.8_JSON) diff --git a/Project/CMake/CMakeLists.txt b/Project/CMake/CMakeLists.txt index 9bb3cf11c..0a7eeb80e 100644 --- a/Project/CMake/CMakeLists.txt +++ b/Project/CMake/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 2.8.11) set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules") set(MediaInfoLib_MAJOR_VERSION 17) -set(MediaInfoLib_MINOR_VERSION 09) +set(MediaInfoLib_MINOR_VERSION 10) set(MediaInfoLib_VERSION ${MediaInfoLib_MAJOR_VERSION}.${MediaInfoLib_MINOR_VERSION}) if (NOT WIN32) diff --git a/Project/GNU/Library/configure.ac b/Project/GNU/Library/configure.ac index 034fc54f1..449addbf1 100644 --- a/Project/GNU/Library/configure.ac +++ b/Project/GNU/Library/configure.ac @@ -5,7 +5,7 @@ dnl ######################################################################### dnl ------------------------------------------------------------------------- dnl Name and version dnl -AC_INIT([libmediainfo], [17.09]) +AC_INIT([libmediainfo], [17.10]) dnl ------------------------------------------------------------------------- dnl Test if we are at the good place diff --git a/Project/GNU/PKGBUILD b/Project/GNU/PKGBUILD index 7ae55b811..88f84d778 100644 --- a/Project/GNU/PKGBUILD +++ b/Project/GNU/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: hydro pkgname=libmediainfo -pkgver=17.09 +pkgver=17.10 pkgrel=1 pkgdesc="shared library for mediainfo" arch=('i686' 'x86_64') diff --git a/Project/GNU/libmediainfo.dsc b/Project/GNU/libmediainfo.dsc index 12cd06ca1..4059cc356 100644 --- a/Project/GNU/libmediainfo.dsc +++ b/Project/GNU/libmediainfo.dsc @@ -2,7 +2,7 @@ Format: 3.0 (quilt) Source: libmediainfo Binary: libmediainfo-dev, libmediainfo0, python-mediainfodll, python3-mediainfodll, libmediainfo-doc libmediainfo0-dbg Architecture: any all -Version: 17.09-1 +Version: 17.10-1 Maintainer: MediaArea.net SARL Homepage: http://MediaArea.net/MediaInfo Standards-Version: 3.9.6 @@ -16,11 +16,11 @@ Package-List: python-mediainfodll deb python optional arch=all python3-mediainfodll deb python optional arch=all Checksums-Sha1: - 0000000000000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz - 0000000000000000000000000000000000000000 000000 libmediainfo_17.09-1.debian.tar.xz + 0000000000000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz + 0000000000000000000000000000000000000000 000000 libmediainfo_17.10-1.debian.tar.xz Checksums-Sha256: - 0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz - 0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.09-1.debian.tar.xz + 0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz + 0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.10-1.debian.tar.xz Files: - 00000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz - 00000000000000000000000000000000 000000 libmediainfo_17.09-1.debian.tar.xz + 00000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz + 00000000000000000000000000000000 000000 libmediainfo_17.10-1.debian.tar.xz diff --git a/Project/GNU/libmediainfo.spec b/Project/GNU/libmediainfo.spec index 80a94663c..441f4970f 100644 --- a/Project/GNU/libmediainfo.spec +++ b/Project/GNU/libmediainfo.spec @@ -1,4 +1,4 @@ -%define libmediainfo_version 17.09 +%define libmediainfo_version 17.10 %define libzen_version 0.4.37 %if 0%{?fedora_version} || 0%{?centos_version} >= 600 || 0%{?rhel_version} >= 600 @@ -236,7 +236,7 @@ rm -f %{buildroot}%{_libdir}/%{name_without_0_ending}.la %{_libdir}/%{name_without_0_ending}.so %changelog -* Sun Jan 01 2012 MediaArea.net SARL - 17.09-0 +* Sun Jan 01 2012 MediaArea.net SARL - 17.10-0 - See History.txt for more info and real dates - Previous packages made by Toni Graffy - Fedora style made by Vasiliy N. Glazov diff --git a/Project/MSVC2013/Dll/MediaInfo.rc b/Project/MSVC2013/Dll/MediaInfo.rc index 7e62a2acd..f7f4406ad 100644 --- a/Project/MSVC2013/Dll/MediaInfo.rc +++ b/Project/MSVC2013/Dll/MediaInfo.rc @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 17,09,0,0 - PRODUCTVERSION 17,09,0,0 + FILEVERSION 17,10,0,0 + PRODUCTVERSION 17,10,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -19,10 +19,10 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "Most relevant technical and tag data for video and audio files" - VALUE "FileVersion", "17.09.0.0" + VALUE "FileVersion", "17.10.0.0" VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL" VALUE "ProductName", "MediaInfo" - VALUE "ProductVersion", "17.09.0.0" + VALUE "ProductVersion", "17.10.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/MSVC2013/Example/HowToUse.rc b/Project/MSVC2013/Example/HowToUse.rc index 7e62a2acd..f7f4406ad 100644 --- a/Project/MSVC2013/Example/HowToUse.rc +++ b/Project/MSVC2013/Example/HowToUse.rc @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 17,09,0,0 - PRODUCTVERSION 17,09,0,0 + FILEVERSION 17,10,0,0 + PRODUCTVERSION 17,10,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -19,10 +19,10 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "Most relevant technical and tag data for video and audio files" - VALUE "FileVersion", "17.09.0.0" + VALUE "FileVersion", "17.10.0.0" VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL" VALUE "ProductName", "MediaInfo" - VALUE "ProductVersion", "17.09.0.0" + VALUE "ProductVersion", "17.10.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/MSVC2013/ShellExtension/MediaInfoShellExt.rc b/Project/MSVC2013/ShellExtension/MediaInfoShellExt.rc index 7e62a2acd..f7f4406ad 100644 --- a/Project/MSVC2013/ShellExtension/MediaInfoShellExt.rc +++ b/Project/MSVC2013/ShellExtension/MediaInfoShellExt.rc @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 17,09,0,0 - PRODUCTVERSION 17,09,0,0 + FILEVERSION 17,10,0,0 + PRODUCTVERSION 17,10,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -19,10 +19,10 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "Most relevant technical and tag data for video and audio files" - VALUE "FileVersion", "17.09.0.0" + VALUE "FileVersion", "17.10.0.0" VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL" VALUE "ProductName", "MediaInfo" - VALUE "ProductVersion", "17.09.0.0" + VALUE "ProductVersion", "17.10.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/MSVC2015/Dll/MediaInfo.rc b/Project/MSVC2015/Dll/MediaInfo.rc index cd3f768fb..266fa1b9f 100644 --- a/Project/MSVC2015/Dll/MediaInfo.rc +++ b/Project/MSVC2015/Dll/MediaInfo.rc @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 17,09,0,0 - PRODUCTVERSION 17,09,0,0 + FILEVERSION 17,10,0,0 + PRODUCTVERSION 17,10,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -19,10 +19,10 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "Most relevant technical and tag data for video and audio files" - VALUE "FileVersion", "17.09.0.0" + VALUE "FileVersion", "17.10.0.0" VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL" VALUE "ProductName", "MediaInfo" - VALUE "ProductVersion", "17.09.0.0" + VALUE "ProductVersion", "17.10.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/MSVC2015/Example/HowToUse.rc b/Project/MSVC2015/Example/HowToUse.rc index cd3f768fb..266fa1b9f 100644 --- a/Project/MSVC2015/Example/HowToUse.rc +++ b/Project/MSVC2015/Example/HowToUse.rc @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 17,09,0,0 - PRODUCTVERSION 17,09,0,0 + FILEVERSION 17,10,0,0 + PRODUCTVERSION 17,10,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -19,10 +19,10 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "Most relevant technical and tag data for video and audio files" - VALUE "FileVersion", "17.09.0.0" + VALUE "FileVersion", "17.10.0.0" VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL" VALUE "ProductName", "MediaInfo" - VALUE "ProductVersion", "17.09.0.0" + VALUE "ProductVersion", "17.10.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/MSVC2015/ShellExtension/MediaInfoShellExt.rc b/Project/MSVC2015/ShellExtension/MediaInfoShellExt.rc index cd3f768fb..266fa1b9f 100644 --- a/Project/MSVC2015/ShellExtension/MediaInfoShellExt.rc +++ b/Project/MSVC2015/ShellExtension/MediaInfoShellExt.rc @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 17,09,0,0 - PRODUCTVERSION 17,09,0,0 + FILEVERSION 17,10,0,0 + PRODUCTVERSION 17,10,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -19,10 +19,10 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "Most relevant technical and tag data for video and audio files" - VALUE "FileVersion", "17.09.0.0" + VALUE "FileVersion", "17.10.0.0" VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL" VALUE "ProductName", "MediaInfo" - VALUE "ProductVersion", "17.09.0.0" + VALUE "ProductVersion", "17.10.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/MSVC2017/Dll/MediaInfo.rc b/Project/MSVC2017/Dll/MediaInfo.rc index cd3f768fb..266fa1b9f 100644 --- a/Project/MSVC2017/Dll/MediaInfo.rc +++ b/Project/MSVC2017/Dll/MediaInfo.rc @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 17,09,0,0 - PRODUCTVERSION 17,09,0,0 + FILEVERSION 17,10,0,0 + PRODUCTVERSION 17,10,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -19,10 +19,10 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "Most relevant technical and tag data for video and audio files" - VALUE "FileVersion", "17.09.0.0" + VALUE "FileVersion", "17.10.0.0" VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL" VALUE "ProductName", "MediaInfo" - VALUE "ProductVersion", "17.09.0.0" + VALUE "ProductVersion", "17.10.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/MSVC2017/Example/HowToUse.rc b/Project/MSVC2017/Example/HowToUse.rc index cd3f768fb..266fa1b9f 100644 --- a/Project/MSVC2017/Example/HowToUse.rc +++ b/Project/MSVC2017/Example/HowToUse.rc @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 17,09,0,0 - PRODUCTVERSION 17,09,0,0 + FILEVERSION 17,10,0,0 + PRODUCTVERSION 17,10,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -19,10 +19,10 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "Most relevant technical and tag data for video and audio files" - VALUE "FileVersion", "17.09.0.0" + VALUE "FileVersion", "17.10.0.0" VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL" VALUE "ProductName", "MediaInfo" - VALUE "ProductVersion", "17.09.0.0" + VALUE "ProductVersion", "17.10.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/MSVC2017/ShellExtension/MediaInfoShellExt.rc b/Project/MSVC2017/ShellExtension/MediaInfoShellExt.rc index cd3f768fb..266fa1b9f 100644 --- a/Project/MSVC2017/ShellExtension/MediaInfoShellExt.rc +++ b/Project/MSVC2017/ShellExtension/MediaInfoShellExt.rc @@ -1,8 +1,8 @@ #include VS_VERSION_INFO VERSIONINFO - FILEVERSION 17,09,0,0 - PRODUCTVERSION 17,09,0,0 + FILEVERSION 17,10,0,0 + PRODUCTVERSION 17,10,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -19,10 +19,10 @@ BEGIN BEGIN VALUE "CompanyName", "MediaArea.net" VALUE "FileDescription", "Most relevant technical and tag data for video and audio files" - VALUE "FileVersion", "17.09.0.0" + VALUE "FileVersion", "17.10.0.0" VALUE "LegalCopyright", "Copyright (C) 2002-2015 MediaArea.net SARL" VALUE "ProductName", "MediaInfo" - VALUE "ProductVersion", "17.09.0.0" + VALUE "ProductVersion", "17.10.0.0" END END BLOCK "VarFileInfo" diff --git a/Project/OBS/deb6.debian/changelog b/Project/OBS/deb6.debian/changelog index f1d03cb89..bc6419cbd 100644 --- a/Project/OBS/deb6.debian/changelog +++ b/Project/OBS/deb6.debian/changelog @@ -1,4 +1,4 @@ -libmediainfo (17.09) unstable; urgency=low +libmediainfo (17.10) unstable; urgency=low * See History.txt for more info and real dates diff --git a/Project/OBS/deb6.dsc b/Project/OBS/deb6.dsc index 9177c1a00..def879e7f 100644 --- a/Project/OBS/deb6.dsc +++ b/Project/OBS/deb6.dsc @@ -2,10 +2,10 @@ Format: 1.0 Source: libmediainfo Binary: libmediainfo-dev, libmediainfo0 libmediainfo0-dbg Architecture: any -Version: 17.09-1deb6 +Version: 17.10-1deb6 Maintainer: MediaArea.net SARL Homepage: http://MediaArea.net/MediaInfo Standards-Version: 3.7.3 Build-Depends: debhelper (>= 5), doxygen, tofrodos, libzen-dev (>= 0.4.37), zlib1g-dev, pkg-config, automake, autoconf, libtool Files: - 00000000000000000000000000000000 000000 libmediainfo_17.09-1deb6.tar.gz + 00000000000000000000000000000000 000000 libmediainfo_17.10-1deb6.tar.gz diff --git a/Project/OBS/deb9.debian/changelog b/Project/OBS/deb9.debian/changelog index fd9de0b43..58a3ad12f 100644 --- a/Project/OBS/deb9.debian/changelog +++ b/Project/OBS/deb9.debian/changelog @@ -1,6 +1,6 @@ -libmediainfo (17.09-1) experimental; urgency=medium +libmediainfo (17.10-1) experimental; urgency=medium - * Upstream version 17.09 + * Upstream version 17.10 For details, see https://github.com/MediaArea/MediaInfoLib/blob/master/History_DLL.txt -- MediaArea Mon, 02 Nov 2015 10:30:00 +0100 diff --git a/Project/OBS/deb9.dsc b/Project/OBS/deb9.dsc index 8ca501164..de2955a44 100644 --- a/Project/OBS/deb9.dsc +++ b/Project/OBS/deb9.dsc @@ -2,7 +2,7 @@ Format: 3.0 (quilt) Source: libmediainfo Binary: libmediainfo-dev, libmediainfo0v5, python-mediainfodll, python3-mediainfodll, libmediainfo-doc libmediainfo0v5-dbg Architecture: any all -Version: 17.09-1deb9 +Version: 17.10-1deb9 Maintainer: MediaArea.net SARL Homepage: http://MediaArea.net/MediaInfo Standards-Version: 3.9.6 @@ -16,11 +16,11 @@ Package-List: python-mediainfodll deb python optional arch=all python3-mediainfodll deb python optional arch=all Checksums-Sha1: - 0000000000000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz - 0000000000000000000000000000000000000000 000000 libmediainfo_17.09-1deb9.debian.tar.xz + 0000000000000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz + 0000000000000000000000000000000000000000 000000 libmediainfo_17.10-1deb9.debian.tar.xz Checksums-Sha256: - 0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz - 0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.09-1deb9.debian.tar.xz + 0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz + 0000000000000000000000000000000000000000000000000000000000000000 000000 libmediainfo_17.10-1deb9.debian.tar.xz Files: - 00000000000000000000000000000000 000000 libmediainfo_17.09.orig.tar.xz - 00000000000000000000000000000000 000000 libmediainfo_17.09-1deb9.debian.tar.xz + 00000000000000000000000000000000 000000 libmediainfo_17.10.orig.tar.xz + 00000000000000000000000000000000 000000 libmediainfo_17.10-1deb9.debian.tar.xz diff --git a/Project/Solaris/mkpkg b/Project/Solaris/mkpkg index 5d223f3c4..70cefac63 100755 --- a/Project/Solaris/mkpkg +++ b/Project/Solaris/mkpkg @@ -9,7 +9,7 @@ release=`uname -r` #Creation of known directories and filenames name="libmediainfo0" -version="17.09" +version="17.10" Home=`pwd` install_prefix=${Home}/mk_package packagecreation_prefix=${Home}/create_package diff --git a/Project/version.txt b/Project/version.txt index 2fdad9f40..6daccccf7 100644 --- a/Project/version.txt +++ b/Project/version.txt @@ -1 +1 @@ -17.09 +17.10 diff --git a/Source/MediaInfo/MediaInfo_Config.cpp b/Source/MediaInfo/MediaInfo_Config.cpp index 87093d4e6..839b97568 100644 --- a/Source/MediaInfo/MediaInfo_Config.cpp +++ b/Source/MediaInfo/MediaInfo_Config.cpp @@ -131,7 +131,7 @@ namespace MediaInfoLib { //--------------------------------------------------------------------------- -const Char* MediaInfo_Version=__T("MediaInfoLib - v17.09"); +const Char* MediaInfo_Version=__T("MediaInfoLib - v17.10"); const Char* MediaInfo_Url=__T("http://MediaArea.net/MediaInfo"); Ztring EmptyZtring; //Use it when we can't return a reference to a true Ztring const Ztring EmptyZtring_Const; //Use it when we can't return a reference to a true Ztring, const version diff --git a/debian/changelog b/debian/changelog index 5880c61b2..dc2a40bca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ -libmediainfo (17.09-1) experimental; urgency=medium +libmediainfo (17.10-1) experimental; urgency=medium - * Upstream version 17.09 + * Upstream version 17.10 For details, see https://github.com/MediaArea/MediaInfoLib/blob/master/History_DLL.txt -- MediaArea Mon, 02 Nov 2015 10:30:00 +0100