summary refs log tree commit diff
path: root/pkgs/applications/audio/transcode
diff options
context:
space:
mode:
authorJos van den Oever <jos@vandenoever.info>2014-06-22 19:23:16 +0200
committerLuca Bruno <lethalman88@gmail.com>2014-06-27 11:34:29 +0200
commit6c20d832635fc3e6312527be3ccb4a1a3a351ebe (patch)
tree3d5997cbf7c10eafe45ff72ac195fef9e7bd6bc9 /pkgs/applications/audio/transcode
parentf7c72829648675f7d5bb6d3220d0fe0bb3091ac7 (diff)
downloadnixpkgs-6c20d832635fc3e6312527be3ccb4a1a3a351ebe.tar
nixpkgs-6c20d832635fc3e6312527be3ccb4a1a3a351ebe.tar.gz
nixpkgs-6c20d832635fc3e6312527be3ccb4a1a3a351ebe.tar.bz2
nixpkgs-6c20d832635fc3e6312527be3ccb4a1a3a351ebe.tar.lz
nixpkgs-6c20d832635fc3e6312527be3ccb4a1a3a351ebe.tar.xz
nixpkgs-6c20d832635fc3e6312527be3ccb4a1a3a351ebe.tar.zst
nixpkgs-6c20d832635fc3e6312527be3ccb4a1a3a351ebe.zip
transcode: new package
Suite of command line utilities for transcoding video and audio codecs,
and for converting beween different container formats.

http://www.transcoding.org/
Diffstat (limited to 'pkgs/applications/audio/transcode')
-rw-r--r--pkgs/applications/audio/transcode/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/audio/transcode/default.nix b/pkgs/applications/audio/transcode/default.nix
new file mode 100644
index 00000000000..c414992a12d
--- /dev/null
+++ b/pkgs/applications/audio/transcode/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, flac, lame, zlib, libjpeg, libvorbis, libtheora, libxml2
+, lzo, libdvdread, pkgconfig, x264, libmpeg2, xvidcore }:
+
+stdenv.mkDerivation rec {
+  name = "transcode-1.1.7";
+  src = fetchurl {
+    url = "https://bitbucket.org/france/transcode-tcforge/downloads/${name}.tar.bz2";
+    sha256 = "1e4e72d8e0dd62a80b8dd90699f5ca64c9b0cb37a5c9325c184166a9654f0a92";
+  };
+
+  buildInputs = [ flac lame zlib libjpeg libvorbis libtheora libxml2 lzo
+                  libdvdread pkgconfig x264 libmpeg2 xvidcore ];
+  configureFlags = "--disable-ffmpeg --disable-libavcodec --disable-libavformat
+    --enable-lzo --enable-ogg --enable-vorbis --enable-theora --enable-libxml2
+    --enable-x264 --enable-libmpeg2 --enable-xvid";
+
+  enableParallelBuilding = true;
+
+  meta = with stdenv.lib; {
+    description = "Suite of command line utilities for transcoding video and audio codecs, and for converting beween different container formats";
+    homepage = http://www.transcoding.org/;
+    license = licenses.lgpl2Plus;
+    platforms = platforms.linux;
+  };
+}