]> git.plutz.net Git - serve0/blobdiff - helpers/genmeta.sh
enable background thumb generation
[serve0] / helpers / genmeta.sh
index 805bde13784287a2f2ff7e92ce3af525283fb354..4fa28e4b4427ebef56126135e841156d78098005 100755 (executable)
@@ -8,12 +8,16 @@ if [ -r "$meta" ]; then
   description="$(sed -n '3,$p' "$meta")"
 fi
 
-eval $(mplayer -noconsolecontrols -input file=/dev/null -slave -really-quiet -identify -frames 0 -ao null -vo null "$video" |sed -rn 's:ID_VIDEO_WIDTH=(.*):width=\1:p;s:ID_VIDEO_HEIGHT=(.*):height=\1:p;s:ID_LENGTH=(.*)(\..*)$:length=\1:p;')
-
-[ -z "$tags" ] && tags='|'
+mplayer --input=nodefault-bindings:conf=/dev/null -nosound -vo null -identify -frames 0 "$video" \
+| sort \
+| sed -rn 's:ID_LENGTH=(.*)(\..*)$:\1:p;
+           s:ID_VIDEO_HEIGHT=(.*):\1:p;
+           s:ID_VIDEO_WIDTH=(.*):\1:p;' \
+| tr '\n' ' ' \
+| read length height width
 
 cat <<EOF >"$meta"
-$length        $width  $height $(basename "$video")
-$tags
-$description
+${length:-0}   ${width:-0}     ${height:-0}    ${video##*/}
+${tags:-|}
+${description}
 EOF