Alexander Skwar wrote:
> I'm using dvd::rip 0.97.8 on Gentoo and get the following
> error message, when I click on "Scan Value" at the Audio
> Options -> Volume Scale:
>
> An internal exception was thrown!
> The error message was:
>
> Can't locate object method "chapter" via package "Video::DVDRip::JobPlanner"
> at
> /usr/lib/perl5/vendor_perl/5.8.8/Video/DVDRip/JobPlanner.pm line 1552.
>
> What's broken?
You hit a bug. I missed changing some stuff here during my heavy
refactoring delusion... ;)
Try the attached patch, this should solve the problem.
Regards,
Joern
--
Joern Reder
supporting: http://www.zyn.de/
unbelievable: http://www.exit1.org/
CPAN: http://www.perl.com/CPAN/modules/by-authors/id/J/JR/JRED
Index: lib/Video/DVDRip/JobPlanner.pm
===================================================================
RCS file: /home/cvsroot/dvdrip/lib/Video/DVDRip/JobPlanner.pm,v
retrieving revision 1.6
diff -u -r1.6 JobPlanner.pm
--- lib/Video/DVDRip/JobPlanner.pm 10 Apr 2006 19:51:05 -0000 1.6
+++ lib/Video/DVDRip/JobPlanner.pm 13 Apr 2006 10:33:52 -0000
@@ -1553,7 +1553,7 @@
$progress_max = $title->get_vob_size;
}
- elsif ( not $self->chapter ) {
+ elsif ( not $chapter ) {
$progress_ips = __"fps";
$progress_max = $title->frames;
}
pgpUxjV9IHklp.pgp
Description: PGP signature
|