summary refs log tree commit diff
path: root/pkgs/applications/misc/mediainfo
diff options
context:
space:
mode:
authordevhell <^@regexmail.net>2015-05-27 19:57:57 +0100
committerdevhell <^@regexmail.net>2015-05-27 19:57:57 +0100
commit4de17c78370e5e66204b78bd4e2b12aefc8c9ed2 (patch)
treee79ea55574ed00191747a60000ba98dfb22501a0 /pkgs/applications/misc/mediainfo
parentc0f09411e832d5f21f122954fa4a72163ebe0284 (diff)
downloadnixpkgs-4de17c78370e5e66204b78bd4e2b12aefc8c9ed2.tar
nixpkgs-4de17c78370e5e66204b78bd4e2b12aefc8c9ed2.tar.gz
nixpkgs-4de17c78370e5e66204b78bd4e2b12aefc8c9ed2.tar.bz2
nixpkgs-4de17c78370e5e66204b78bd4e2b12aefc8c9ed2.tar.lz
nixpkgs-4de17c78370e5e66204b78bd4e2b12aefc8c9ed2.tar.xz
nixpkgs-4de17c78370e5e66204b78bd4e2b12aefc8c9ed2.tar.zst
nixpkgs-4de17c78370e5e66204b78bd4e2b12aefc8c9ed2.zip
Update mediainfo{-gui} and dependencies
* mediainfo{-gui} 0.7.73 -> 0.7.74
* libmediainfo    0.7.73 -> 0.7.74

From the mediainfo ChangeLog:
```
Version 0.7.74, 2015-05-25

+ FIMS: Preliminary version (not for production)
+ D-10 audio: display of real bitrate beside the encoded bitrate
+ VC-3: detection of CDP packets (608/708 captions), created by Nexio, inside the VC-3 private data
+ AES3: generic term AES3 replaced by more precise SMPTE ST numbers (302, 331, 337)
+ NUT: basic detection
+ FFV1: more parsing of the bitstream, support of any version of FFV1 in MOV and Matroska
+ DPX: color space and frame rate
x #B906, Matroska: duration was missing if Info block is at the end of the file
x #B908, AC-3: bit depth removed
x #P86, MPEG-4: moov_trak_edts_elst Atom was ignoring version of the atom
x Dolby E: the MXF channel count value was sometimes reported instead of the real channel count
x VorbisComment: WAVEFORMATEXTENSIBLE_CHANNEL_MASK "0X" ("x" in uppercase) is accepted now
x EBUCore: TotalProgrammeDuration was wrongly filled with IdentClockStart value
x EBUCore: Source/Material moved from timecodeStart to timecodeTrack
x MPEG-4: info is missing for some streams in some specific cases
```
Diffstat (limited to 'pkgs/applications/misc/mediainfo')
-rw-r--r--pkgs/applications/misc/mediainfo/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix
index ce2875656b6..6330d90c178 100644
--- a/pkgs/applications/misc/mediainfo/default.nix
+++ b/pkgs/applications/misc/mediainfo/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, zlib }:
 
 stdenv.mkDerivation rec {
-  version = "0.7.73";
+  version = "0.7.74";
   name = "mediainfo-${version}";
   src = fetchurl {
     url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.bz2";
-    sha256 = "14mbiy1xhj4nlp7hnfqvi518xn1f718b2vbl8xkjqr2sqjdf5jm7";
+    sha256 = "06r6inggkb3gmxax182y4y39icxry5hdcvq7syb060l8wxrk14ky";
   };
 
   buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ];