lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09-beta 34 lines 1.0 kB view raw
1{ fetchurl, stdenv, libunwind, libraw1394, libjpeg, libiec61883, libdv 2, libavc1394, pkgconfig }: 3 4stdenv.mkDerivation rec { 5 name = "dvgrab-3.5"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/kino/${name}.tar.gz"; 9 sha256 = "1y8arv14nc9sf8njfcxf96pb4nyimpsly1fnhcbj406k54s1h42r"; 10 }; 11 12 buildInputs = 13 [ libunwind libraw1394 libjpeg libiec61883 libdv libavc1394 14 pkgconfig 15 ]; 16 17 meta = { 18 description = "Receive and store audio & video over IEEE1394"; 19 20 longDescription = 21 '' dvgrab receives audio and video data from a digital camcorder via an 22 IEEE1394 (widely known as FireWire) or USB link and stores them into 23 one of several file formats. It features autosplit of long video 24 sequences, and supports saving the data as raw frames, AVI type 1, 25 AVI type 2, Quicktime DV, a series of JPEG stills or MPEG2-TS. 26 ''; 27 28 homepage = http://kinodv.org/; 29 30 license = stdenv.lib.licenses.gpl2Plus; 31 platforms = stdenv.lib.platforms.gnu; 32 maintainers = [ ]; 33 }; 34}