]> git.plutz.net Git - serve0/commitdiff
use ffprobe for reading video meta data, dropping dependency on mplayer
authorPaul Hänsch <paul@plutz.net>
Mon, 4 Oct 2021 20:07:43 +0000 (22:07 +0200)
committerPaul Hänsch <paul@plutz.net>
Mon, 4 Oct 2021 20:07:43 +0000 (22:07 +0200)
indexmeta.sh

index e37e5da6c3696cffd979639798a785dff84ff69a..50d83ef1b867f30e15aeb0f6861c5fd53de6cc32 100644 (file)
@@ -13,22 +13,17 @@ meta_name() {
 }
 
 meta_line() {
-  local video l w h
+  local video probe l w h
   video="$1"
   [ "${video%.part}" = "$video" -a -s "$video" ] || return 0
 
-  read l h w <<__EOF
-  $(printf '' \
-    | mplayer -input nodefault-bindings -nosound -vo null -identify -frames 0 "$video" 2>&- \
-    | sort | sed -rn '
-      s:ID_LENGTH=(.*)(\..*)$:\1:p;
-      s:ID_VIDEO_HEIGHT=(.*):\1:p;
-      s:ID_VIDEO_WIDTH=(.*):\1:p;' \
-    | tr '\n' ' '
-  )
-__EOF
-  printf '%i\t%i\t%i\ttags=\tcomment=\t%s\n' \
-         "${l-0}" "${w-0}" "${h-0}" "$(meta_name "$video")"
+  meta="$(printf \\n; ffprobe -show_entries format=duration:stream=width,height 2>&-)"
+  l="${probe#*duration=}" l="${l%%${BR}*}"
+  w="${probe#*width=}"    w="${w%%${BR}*}"
+  h="${probe#*height=}"   h="${h%%${BR}*}"
+
+  printf '%i   %i      %i      tags=   comment=        %s\n' \
+         "${l:-0}" "${w:-0}" "${h:-0}" "$(meta_name "$video")"
 }
 
 meta_file(){