diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-29 14:38:44 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-29 14:38:44 +0100 |
commit | e2c35828346341d95557939791642ba3b50c401f (patch) | |
tree | c465cda3a69f681d42bfad36b2ef48501368e29b /PLUGINS/src/pictures/pic2mpg | |
parent | bca18a19c927f1c3df6303e200eda9ada72f07e1 (diff) | |
download | vdr-e2c35828346341d95557939791642ba3b50c401f.tar.gz vdr-e2c35828346341d95557939791642ba3b50c401f.tar.bz2 |
Made the 'pic2mpg' script of the 'pictures' plugin work with relative paths
Diffstat (limited to 'PLUGINS/src/pictures/pic2mpg')
-rwxr-xr-x | PLUGINS/src/pictures/pic2mpg | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/PLUGINS/src/pictures/pic2mpg b/PLUGINS/src/pictures/pic2mpg index bcafcf52..af58f975 100755 --- a/PLUGINS/src/pictures/pic2mpg +++ b/PLUGINS/src/pictures/pic2mpg @@ -7,11 +7,12 @@ # # See the README file for copyright information and how to reach the author. # -# $Id: pic2mpg 1.3 2008/02/24 22:00:18 kls Exp $ +# $Id: pic2mpg 1.4 2008/02/29 14:34:22 kls Exp $ ## TODO implement HDTV (1920 x 1080) use File::Path; +use File::Spec; use Getopt::Std; use Image::Size; @@ -87,8 +88,8 @@ if (-f $ARGV[0]) { die "$0: mixed directory and file ('$ARGV[0]' <-> '$ARGV[1]')\n" unless !-e $ARGV[1] || -d $ARGV[1]; -$PICDIR = $ARGV[0]; -$MPGDIR = $ARGV[1]; +$PICDIR = File::Spec->rel2abs($ARGV[0]); +$MPGDIR = File::Spec->rel2abs($ARGV[1]); # Convert pictures to mpegs: |