Re: where to change -x part of transcode command
"John Goulah" <[email protected]>
| Newsgroups | gmane.comp.video.dvdrip.user |
|---|---|
| Message-ID | <[email protected]> |
On 8/7/07, John Goulah <[email protected]> wrote: > > I'm having a hanging problem on the transcode "Grab Preview Image Command" > portion of the rip, which I have resolved to changing the -x option to > transcode, so this command portion : > > ...... execflow transcode -H 10 --print_status 25 -o snapshot -y ppm,null > -x vob,null -i /opt/dvdrip/alien/vob/005/ -c 2-3 -L 3228 .... > > needs to be > > ...... execflow transcode -H 10 --print_status 25 -o snapshot -y ppm,null > -x mpeg2,null -i /opt/dvdrip/alien/vob/005/ -c 2-3 -L 3228 .... > > > I see a command getting setup in lib/Video/DVDRip/Title.pm, but not sure > if this is best to edit. Heres a patch for what seems to work for me (I know I've seen others with the problem)- Thanks, John
dvdrip-0.98.7-patch.txt
(text/plain, 357 B)
--- lib/Video/DVDRip/Title.pm.orig 2007-08-07 21:29:37.000000000 -0400
+++ lib/Video/DVDRip/Title.pm 2007-08-07 21:17:46.000000000 -0400
@@ -787,7 +787,7 @@ sub data_source_options {
my ( $input_filter, $need_title );
if ( $mode eq 'rip' ) {
- $input_filter = "vob";
+ $input_filter = "mpeg2";
$need_title = 0;
}