summary refs log tree commit diff
path: root/pkgs/applications/misc/mediainfo
diff options
context:
space:
mode:
authordevhell <^@regexmail.net>2015-07-04 15:55:15 +0100
committerdevhell <^@regexmail.net>2015-07-04 15:55:15 +0100
commit2a45a98e97012b7650b5a2ee9bb54665ca793de8 (patch)
treedce951514ac4197c1c6d48a6f1430f93157682a8 /pkgs/applications/misc/mediainfo
parent58b60094be2a65256413bec134a245e8ecab4b26 (diff)
downloadnixpkgs-2a45a98e97012b7650b5a2ee9bb54665ca793de8.tar
nixpkgs-2a45a98e97012b7650b5a2ee9bb54665ca793de8.tar.gz
nixpkgs-2a45a98e97012b7650b5a2ee9bb54665ca793de8.tar.bz2
nixpkgs-2a45a98e97012b7650b5a2ee9bb54665ca793de8.tar.lz
nixpkgs-2a45a98e97012b7650b5a2ee9bb54665ca793de8.tar.xz
nixpkgs-2a45a98e97012b7650b5a2ee9bb54665ca793de8.tar.zst
nixpkgs-2a45a98e97012b7650b5a2ee9bb54665ca793de8.zip
{lib}mediainfo{-gui}: 0.7.74 -> 0.7.75
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
```
Diffstat (limited to 'pkgs/applications/misc/mediainfo')
-rw-r--r--pkgs/applications/misc/mediainfo/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix
index 6330d90c178..c9792f3a2af 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.74";
+  version = "0.7.75";
   name = "mediainfo-${version}";
   src = fetchurl {
-    url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.bz2";
-    sha256 = "06r6inggkb3gmxax182y4y39icxry5hdcvq7syb060l8wxrk14ky";
+    url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
+    sha256 = "1xdsy5z7x7bd251m26h5hcwcmgl6gklxj6h9q025mlnfmcs7pbdy";
   };
 
   buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ];