diff options
-rw-r--r-- | HISTORY | 7 | ||||
-rwxr-xr-x | scripts/maverickplugin.sh | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,6 +1,13 @@ VDR Plugin 'image' Revision History ----------------------------------- +2005-08-19 +- fix scripts/maverickplugin.sh: better resolution retrieval (provided by kc_captain-at-vdr-portal de) + +2005-08-16 +- remove redundant code +- now for compiled are at the least VDR 1.3.28 required + 2005-07-27 - add option for border of underscan diff --git a/scripts/maverickplugin.sh b/scripts/maverickplugin.sh index 1b41869..f6888f9 100755 --- a/scripts/maverickplugin.sh +++ b/scripts/maverickplugin.sh @@ -76,7 +76,7 @@ fi else # Get image resolution - RES=`echo $( identify "$INFILE" | cut -d " " -f 3 )` # checked with imagemagick 6.0.6, + RES=`echo $( identify -format "%wx%h" "$INFILE" )` # checked with imagemagick 6.0.6 ... # Parse identify output image.jpg JPEG 3456x2304 DirectClass 4.7mb 3.720u 0:04 X_RES=$(echo -e "$RES"| cut -d "x" -f 1) Y_RES=$(echo -e "$RES"| cut -d "x" -f 2) |