mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- actually add the patch
This commit is contained in:
parent
833f6b9137
commit
fe24e74584
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=236564
1 changed files with 33 additions and 0 deletions
33
multimedia/acidrip/files/patch-AcidRip__acidrip.pm
Normal file
33
multimedia/acidrip/files/patch-AcidRip__acidrip.pm
Normal file
|
@ -0,0 +1,33 @@
|
|||
--- ./AcidRip/acidrip.pm.orig 2004-07-25 10:03:09.000000000 -0400
|
||||
+++ ./AcidRip/acidrip.pm 2009-06-23 19:43:28.289154908 -0400
|
||||
@@ -218,7 +218,29 @@
|
||||
$menc{'video'} .= ":pass=$::settings->{'video_pass'}" if $::settings->{'video_passes'} > 1;
|
||||
}
|
||||
if ( $::settings->{'video_codec'} eq 'xvid' ) {
|
||||
- $menc{'video'} = "-ovc xvid -xvidencopts $::settings->{'xvid_options'}:bitrate=$::settings->{'video_bitrate'}";
|
||||
+#----------------
|
||||
+#ORIGINAL $menc{'video'} = "-ovc xvid -xvidencopts $::settings->{'xvid_options'}:bitrate=$::settings->{'video_bitrate'}";
|
||||
+ $menc{'video'} = "-ovc xvid -xvidencopts ";
|
||||
+ if ( $::settings->{'xvid_options'} eq '' )
|
||||
+ {
|
||||
+ # my $msgaa = "AA You have no xvid_options set.";
|
||||
+ # message($msgaa);
|
||||
+ # print $msgaa . "\n";
|
||||
+ # my $msgbb = "BB You have no xvid_options set.";
|
||||
+ # message($msgbb);
|
||||
+ # print $msgbb . "\n";
|
||||
+ }
|
||||
+ else
|
||||
+ {
|
||||
+ # my $msgaa = "AA You do have some xvid_options set.";
|
||||
+ # message($msgaa);
|
||||
+ # print $msgaa . "\n";
|
||||
+ # my $msgbb = "BB You do have some xvid_options set.";
|
||||
+ # message($msgbb);
|
||||
+ # print $msgbb . "\n";
|
||||
+ $menc{'video'} .= "$::settings->{'xvid_options'}:" ;
|
||||
+ }
|
||||
+ $menc{'video'} .= "bitrate=$::settings->{'video_bitrate'}";
|
||||
$menc{'video'} .= ":pass=$::settings->{'video_pass'}" if $::settings->{'video_passes'} > 1;
|
||||
}
|
||||
if ( $::settings->{'video_codec'} eq 'nuv' ) {
|
Loading…
Add table
Reference in a new issue