2014-12-17 01:24:18 +01:00
|
|
|
{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig }:
|
|
|
|
|
Update mediainfo{-gui} and dependencies
* mediainfo{-gui} 0.7.72 -> 0.7.73
* libmediainfo 0.7.72 -> 0.7.73
* libzen 0.4.30 -> 0.4.31
From the mediainfo ChangeLog:
```
Version 0.7.73, 2015-04-09
+ BPG: basic support, thanks to Kurtnoise
+ CAF: basic support of Apple Core Audio Format, sponsored by FlavorSys
+ JPEG-2000: Display of profile (Rsiz)
+ JPEG-2000: detection of XYZ colorspace (based on D-Cinema profile)
+ FFV1 in MOV: more details (version...)
+ MOV/MPEG-4: handling of clcn (little endian nclc) Color parameter type
+ #P84, Matroska: Add TEXTST support to the MKV Parser, thanks to Kurtnoise
+ #P85, MPEG-TS: Add TEXTST support to the MPEG-PSI Parser, thanks to Kurtnoise
+ MediaInfoDLL interface: clean up, more debug features added
+ MediaInfoDLL interface: Giant threads lock removed
+ #F460, VC-3/DNxHD: detection of RGB 444 and other SMPTE ST 2019 (2014) new CIDs
+ VC-3/DNxHD: version number (HVN)
+ Clean aperture size is move from width/height to its own field
+ HEVC: tier
+ MXF: writing library and writing application fields are cleaned up
+ ProRes: support of 4444 profiles
+ CAP: detection of CAP files from Cheetah and Lambda
x B886, XML and HTML outputs were broken
x B902: EBU AspectRatio invalid in case of non classic numerator:denominator format
x #B758, VC-3/DNxHD: wrong color space and subsampling in case of unknown CID, now empty if format version is not known
x #B903, MXG: Incorrect timecode track used for AS-11 DPP MXF files
x #B904, MXF: Handling repetition of Header Metadata in MXF files
x MXF: AFD value was wrong (displaying the complete byte, but AFD is only 4 bits of this byte)
x DTS: some streams in Little endian were not detected
x MPEG-4: some files were having an incorrect frame count
x AVC: Some SCTE 128 caption streams were displayed twice
x BMP; accepting files with file size information set to -1
x RF64: samplesCount was not always right
x MOV: avoid wrong parsing in case of "colr" atom with "prof" color parameter type
x DCP/IMF: ID has now the AM/PKL CPL order in order in all cases (not only when there is more than one CPL)
x #B893, MXF: Crash with Panasonic P2 3.0 files
x DPX: time information was with native ":" character
x Images sequence: "Delay" field is filled from the number in the name of the first file
x FLV: some files were not having the right duration
x DPX: Cineon files were detected as DPX Version 1, version number was not corresponding to the real version
```
2015-04-09 19:52:41 +02:00
|
|
|
let version = "0.4.31"; in
|
2014-12-17 01:24:18 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libzen-${version}";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2";
|
Update mediainfo{-gui} and dependencies
* mediainfo{-gui} 0.7.72 -> 0.7.73
* libmediainfo 0.7.72 -> 0.7.73
* libzen 0.4.30 -> 0.4.31
From the mediainfo ChangeLog:
```
Version 0.7.73, 2015-04-09
+ BPG: basic support, thanks to Kurtnoise
+ CAF: basic support of Apple Core Audio Format, sponsored by FlavorSys
+ JPEG-2000: Display of profile (Rsiz)
+ JPEG-2000: detection of XYZ colorspace (based on D-Cinema profile)
+ FFV1 in MOV: more details (version...)
+ MOV/MPEG-4: handling of clcn (little endian nclc) Color parameter type
+ #P84, Matroska: Add TEXTST support to the MKV Parser, thanks to Kurtnoise
+ #P85, MPEG-TS: Add TEXTST support to the MPEG-PSI Parser, thanks to Kurtnoise
+ MediaInfoDLL interface: clean up, more debug features added
+ MediaInfoDLL interface: Giant threads lock removed
+ #F460, VC-3/DNxHD: detection of RGB 444 and other SMPTE ST 2019 (2014) new CIDs
+ VC-3/DNxHD: version number (HVN)
+ Clean aperture size is move from width/height to its own field
+ HEVC: tier
+ MXF: writing library and writing application fields are cleaned up
+ ProRes: support of 4444 profiles
+ CAP: detection of CAP files from Cheetah and Lambda
x B886, XML and HTML outputs were broken
x B902: EBU AspectRatio invalid in case of non classic numerator:denominator format
x #B758, VC-3/DNxHD: wrong color space and subsampling in case of unknown CID, now empty if format version is not known
x #B903, MXG: Incorrect timecode track used for AS-11 DPP MXF files
x #B904, MXF: Handling repetition of Header Metadata in MXF files
x MXF: AFD value was wrong (displaying the complete byte, but AFD is only 4 bits of this byte)
x DTS: some streams in Little endian were not detected
x MPEG-4: some files were having an incorrect frame count
x AVC: Some SCTE 128 caption streams were displayed twice
x BMP; accepting files with file size information set to -1
x RF64: samplesCount was not always right
x MOV: avoid wrong parsing in case of "colr" atom with "prof" color parameter type
x DCP/IMF: ID has now the AM/PKL CPL order in order in all cases (not only when there is more than one CPL)
x #B893, MXF: Crash with Panasonic P2 3.0 files
x DPX: time information was with native ":" character
x Images sequence: "Delay" field is filled from the number in the name of the first file
x FLV: some files were not having the right duration
x DPX: Cineon files were detected as DPX Version 1, version number was not corresponding to the real version
```
2015-04-09 19:52:41 +02:00
|
|
|
sha256 = "1d54bn561dipf16ki1bfq5r72j5bmz1yyx4n1v85jv4qc4cfvl4z";
|
2014-12-17 01:24:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ automake autoconf libtool pkgconfig ];
|
2014-12-19 00:11:55 +01:00
|
|
|
configureFlags = [ "--enable-shared" ];
|
2014-12-17 01:24:18 +01:00
|
|
|
|
|
|
|
sourceRoot = "./ZenLib/Project/GNU/Library/";
|
|
|
|
|
|
|
|
preConfigure = "sh autogen";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Shared library for libmediainfo and mediainfo";
|
2014-12-20 16:40:16 +01:00
|
|
|
homepage = http://mediaarea.net/;
|
2014-12-17 01:24:18 +01:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
2015-04-04 07:10:20 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-12-18 20:52:37 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.devhell ];
|
2014-12-17 01:24:18 +01:00
|
|
|
};
|
|
|
|
}
|