diff options
author | Andreas Brachold <vdr07@deltab.de> | 2005-07-19 15:36:03 +0000 |
---|---|---|
committer | Andreas Brachold <vdr07@deltab.de> | 2005-07-19 15:36:03 +0000 |
commit | b8671ccffc526763a64d7f7614dd8ba66e6fb540 (patch) | |
tree | 7bfb52099e19383fb1d4117a08b738f9a60e07c0 /scripts/imageplugin.sh | |
parent | f897f2aa7055c493db6391c50c8d19da970078e8 (diff) | |
download | vdr-plugin-image-b8671ccffc526763a64d7f7614dd8ba66e6fb540.tar.gz vdr-plugin-image-b8671ccffc526763a64d7f7614dd8ba66e6fb540.tar.bz2 |
- add alternative script (scripts/maverickplugin.sh) for image converting with imagemagick
- adjust encoding parameter for new ffmpeg-releases, downwards compatible
- remove linking with dlfcn at runtime of libavcodec.so, now are linked at compiled time
- some code refactoring, to enhance readability
Diffstat (limited to 'scripts/imageplugin.sh')
-rwxr-xr-x | scripts/imageplugin.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/imageplugin.sh b/scripts/imageplugin.sh index 2afd734..73635c1 100755 --- a/scripts/imageplugin.sh +++ b/scripts/imageplugin.sh @@ -1,8 +1,9 @@ #!/bin/bash # script for vdr-imageplugin to convert the selected image to pnm-image -# needs : netpbm-progs > anytopnm pnmscale pnmfile pnmcut pnmflip +# needs : netpbm-progs > anytopnm pnmscalefixed pnmfile pnmcut pnmflip # # History: +# 2005-06-17 wrong lookup for pnmscale and really are pnmscalefixed used # 2004-08-12 Initalrelease, Andreas Brachold <vdr04-at-deltab.de> # base on prior work for convert.sh # by Onno Kreuzinger <o.kreuzinger-at-kreuzinger.biz> @@ -46,7 +47,7 @@ fi ASPECT_RATIO="${ASPECT_RATIO:-"4:3"}" # check requirement external programs - REQUIREMENTS="anytopnm pnmscale pnmfile pnmcut pnmflip" + REQUIREMENTS="anytopnm pnmscalefixed pnmfile pnmcut pnmflip" for i in $REQUIREMENTS do type "$i" > /dev/null 2>&1 |