Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > by-pkgid > 517ff0c5e93d4e018a7d34b6f95e4424 > files > 26

perl-DVD-Read-0.03-2mdv2010.0.i586.rpm

#!/bin/env perl

use strict;
use warnings;
use DVD::Read;

my ($location, $titleno, $chapter, $file) = @ARGV;

my $dvd = DVD::Read->new($location) or do {
    warn "Cant read $location\n";
    next;
};

print ($dvd->volid || '');
printf(" %d titles\n",
    $dvd->titles_count);

my $title = $dvd->get_title($titleno);

$title->extract_chapter($chapter, $file);