X-Git-Url: http://git.plutz.net/?p=serve0;a=blobdiff_plain;f=indexmeta.sh;h=2da085f9a0bf86fcdb630f8fd98443df7d99c423;hp=43e360d2bfcfab9f4cc7ea2016b971f981239227;hb=HEAD;hpb=61933758148caee332ab0ca95f1a2feccd612b5e diff --git a/indexmeta.sh b/indexmeta.sh old mode 100644 new mode 100755 index 43e360d..87fbd12 --- a/indexmeta.sh +++ b/indexmeta.sh @@ -7,28 +7,22 @@ include_indexmeta="$0" file_pattern='^.*\.(mov|ts|mpg|mpeg|mp4|m4v|avi|mkv|flv|sfv|wmv|ogm|ogv|webm|iso|rmvb)$' meta_name() { - local fn - fn="$1"; fn="${fn##*/}"; fn="${fn%.*}" - STRING "$fn"; printf '\r' + local fn="${1##*/}" + STRING "${fn%.*}" } 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")" + probe="$(printf \\n; ffprobe -show_entries format=duration:stream=width,height "$video" 2>&-)" + l="${probe#*duration=}" l="${l%%${BR}*}" l="${l%.*}" + w="${probe#*width=}" w="${w%%${BR}*}" + h="${probe#*height=}" h="${h%%${BR}*}" + + printf '%i %i %i tags= comment= %s\r\n' \ + "${l:-0}" "${w:-0}" "${h:-0}" "$(meta_name "$video")" } meta_file(){ @@ -38,7 +32,7 @@ meta_file(){ name="$(meta_name "$file")" if [ -d "${meta%/meta}" ] && LOCK "$meta"; then - grep -avF " ${name}" "$meta" >"$meta.tmp" + grep -avF " ${name}${CR}" "$meta" >"$meta.tmp" meta_line "$file" \ | tee -a "$meta.tmp" mv "$meta.tmp" "$meta" @@ -53,8 +47,8 @@ meta_purge(){ name="$(meta_name "$file")" if [ -d "${meta%/meta}" ] && LOCK "$meta"; then - grep -avF " ${name}" "$meta" >"${meta}.tmp" - grep -aF " ${name}" "$meta" >>"${meta}.trash" + grep -avF " ${name}${CR}" "$meta" >"${meta}.tmp" + grep -aF " ${name}${CR}" "$meta" >>"${meta}.trash" mv "${meta}.tmp" "$meta" RELEASE "$meta" fi @@ -65,11 +59,11 @@ meta_info(){ file="$1"; meta="${file%/*}/.index/meta" if [ -d "${meta%/meta}" ]; then - grep -aF " $(meta_name "$file")" "$meta" \ + grep -aF " $(meta_name "$file")${CR}" "$meta" \ | grep -m1 -axE '[0-9]+ [0-9]+ [0-9]+ tags=[^ ]* comment=[^ ]* .+' \ || meta_file "$file" else - printf '0\t0\t0\ttags=\tcomment=\t%s\r' "$(meta_name "$file")" + printf '0\t0\t0\ttags=\tcomment=\t%s\r\n' "$(meta_name "$file")" fi } @@ -83,7 +77,7 @@ meta_dir(){ if [ -d "$dir/.index" -a \! -f "$meta" ] && LOCK "$meta"; then touch "$meta" # preliminary touch to prevent concurrent generators - find "$dir" -type f -mindepth 1 -maxdepth 1 \ + find -L "$dir" -type f -mindepth 1 -maxdepth 1 \ | grep -aE "$file_pattern" \ | while read -r v; do meta_line "$v" @@ -93,11 +87,11 @@ meta_dir(){ RELEASE "$meta" elif [ -d "$dir/.index" -a "$dir" -nt "$metat" ] && LOCK "$meta"; then touch "$meta" - find "$dir" -type f -newer "$metat" \ + find -L "$dir" -type f -newer "$metat" \ -mindepth 1 -maxdepth 1 \ | grep -aE "$file_pattern" \ | while read -r v; do - grep -qF " $(meta_name "$v")" "$meta" \ + grep -qF " $(meta_name "$v")${CR}" "$meta" \ || meta_line "$v" done >>"$meta" touch "$metat"