if the Tracktitle contains white spaces bash terminates
with the following error message
bash: syntax error near unexpected token `('
-vobsubout /mount/filme/matrix_reloaded_disc_1 ( deutsch )
this is becaus of the missing quots,
suggestion:
acidrip.pm:
Line 272:
$menc{'subout'} = $::settings->{'vobsubout'} ?
"-vobsubout $menc{'basename'}" : "";
To:
$menc{'subout'} = $::settings->{'vobsubout'} ?
"-vobsubout \"$menc{'basename'}\"" : "";
2. if the field options in the Section Audio is empty
acidrip creats the following output:
-lavcopts vcodec=mpeg4:vhq:vqmin=2:vbitrate=1625
but mencoder dosn't support -lavcopts without an option
suggestion:
acidrip.pm:
Line 238:
From:
$menc{'audio'} .= " -lameopts
$::settings->{'audio_mp3lame_options'}" if
$::settings->{'audio_codec'} eq 'mp3lame' ;
To:
$menc{'audio'} .= " -lameopts
$::settings->{'audio_mp3lame_options'}" if (
$::settings->{'audio_codec'} eq 'mp3lame' && n
ot $::settings->{'audio_mp3lame_options'} eq "" ) ;
Regards
Fred
Chris Phillips
None
None
Public
|
Date: 2008-03-30 00:14
|
|
Date: 2006-11-27 05:02
|
|
Date: 2004-12-29 17:34 Logged In: YES |
|
Date: 2004-10-02 11:47 Logged In: YES |
| Field | Old Value | Date | By |
|---|---|---|---|
| assigned_to | nobody | 2004-10-02 11:47 | acid_kewpie |