2a45a98e97
Changelog: ``` Version 0.7.75, 2015-06-30 + MXF: consideraing 60 fps timecode tracks with 2 components having a difference of 2 frames as a single timecode + EBUCore 1.6: switch to the link of the final XSD x XDCAM: some directory structures were wrongly detected as XDCAM structure having a XML file x MXF: SDTI 60 fps times were wrong x #B927, DPX: date/time specific DPX format was used instead of the ISO-like one x #B927, EBUCore: invalid content in attribute startDate x ProRes: streams with apcs CodecID were displayed with an incoherent bit depth instead of no bit depth ```
30 lines
1.0 KiB
Nix
30 lines
1.0 KiB
Nix
{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.7.75";
|
|
name = "mediainfo-${version}";
|
|
src = fetchurl {
|
|
url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
|
|
sha256 = "1xdsy5z7x7bd251m26h5hcwcmgl6gklxj6h9q025mlnfmcs7pbdy";
|
|
};
|
|
|
|
buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ];
|
|
|
|
sourceRoot = "./MediaInfo/Project/GNU/CLI/";
|
|
|
|
configureFlags = [ "--with-libmediainfo=${libmediainfo}" ];
|
|
preConfigure = "sh autogen";
|
|
|
|
meta = {
|
|
description = "Supplies technical and tag information about a video or audio file";
|
|
longDescription = ''
|
|
MediaInfo is a convenient unified display of the most relevant technical
|
|
and tag data for video and audio files.
|
|
'';
|
|
homepage = http://mediaarea.net/;
|
|
license = stdenv.lib.licenses.bsd2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.devhell ];
|
|
};
|
|
}
|