Skip to content

Commit a7ea27b

Browse files
committed
typos
1 parent 4137024 commit a7ea27b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

trunk/export/SVCD.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ package export::SVCD;
122122
# Load nuv info
123123
load_finfo($episode);
124124
# PAL or NTSC?
125-
my $size = ($episode->{'finfo'}{'fps'} =~ /^2(?:5|4\.9)/) ? '480x576' : '480x480';
125+
my $res = ($episode->{'finfo'}{'fps'} =~ /^2(?:5|4\.9)/) ? '480x576' : '480x480';
126126
# Build the transcode string
127-
$self->{'transcode_xtra'} = " -y mpeg2enc,mp2enc -Z $size"
127+
$self->{'transcode_xtra'} = " -y mpeg2enc,mp2enc -Z $res"
128128
.' -F 5,"-q '.$self->{'quantisation'}.'"' # could add "-M $num_cpus" for multi-cpu here, but it actually seems to slow things down
129129
.' -w '.$self->{'v_bitrate'}
130130
.' -E 44100 -b '.$self->{'a_bitrate'};

trunk/export/VCD.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ package export::VCD;
6161
# Load nuv info
6262
load_finfo($episode);
6363
# PAL or NTSC?
64-
my $size = ($episode->{'finfo'}{'fps'} =~ /^2(?:5|4\.9)/) ? '352x288' : '352x240';
64+
my $res = ($episode->{'finfo'}{'fps'} =~ /^2(?:5|4\.9)/) ? '352x288' : '352x240';
6565
# Build the transcode string
66-
$self->{'transcode_xtra'} = " -y mpeg2enc,mp2enc -Z $size"
66+
$self->{'transcode_xtra'} = " -y mpeg2enc,mp2enc -Z $res"
6767
.' -F 1 -E 44100 -b 224';
6868
# Add the temporary files that will need to be deleted
6969
push @tmpfiles, $self->get_outfile($episode, ".$$.m1v"), $self->get_outfile($episode, ".$$.mpa");

0 commit comments

Comments
 (0)