diff options
Diffstat (limited to 'PLUGINS/src/pictures/pic2mpg-sd')
-rwxr-xr-x | PLUGINS/src/pictures/pic2mpg-sd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PLUGINS/src/pictures/pic2mpg-sd b/PLUGINS/src/pictures/pic2mpg-sd index 6213091..01312af 100755 --- a/PLUGINS/src/pictures/pic2mpg-sd +++ b/PLUGINS/src/pictures/pic2mpg-sd @@ -154,7 +154,7 @@ sub ConvertFile print "image size is $w x $h\n" if ($Detailed); my $Exif = ImageInfo($Pict); my $Orientation = $$Exif{"Orientation"}; - my ($Degrees) = $Orientation =~ /Rotate ([0-9]+) /; + my ($Degrees) = $Orientation =~ /Rotate ([0-9]+) /; my $Rotate = "-null"; $Rotate = "-cw" if $Degrees eq "90"; $Rotate = "-ccw" if $Degrees eq "270"; |