特定の時間間隔内に期間があるすべてのビデオファイルを見つける方法。
たとえば、長さが20〜40分の間のすべてのビデオファイルを見つけます。
答え1
次のスクリプトがそのタスクを実行します。これは、ビデオが単一のディレクトリ(システム全体ではない)にあると仮定します。
さらに、スクリプトはユーザーがavprobe
それをインストールしたと仮定します。avconv
つまり、スクリプトは(の一部)とffprobe
同じ構文を持つ必要があります。ffmpeg
出力が異なるffprobe
場合は、スクリプトを編集する必要があります。
ただし、期間は秒単位でなければなりません。保存すると計算が実行されます。
#!/bin/sh
# NOTE: Assumes you have avprobe installed and the full path
# to it is /usr/bin/avprobe - if not, edit.
# Where are the videos?
MASTER="/home/tigger/Videos"
# Duration min in seconds (1200 = 20min)
DUR_MIN="1200"
# Duration max in seconds (2400 = 40min)
DUR_MAX="2400"
# Get a list of files
LIST=`find "$MASTER" -type f`
# In case of a space in file names, split on return
IFS_ORIG=$IFS
IFS="
"
valid="\nList of videos with duration between $DUR_MIN and $DUR_MAX seconds"
# Loop over the file list and probe each file.
for v in $LIST
do
printf "Checking ${v}\n"
dur=`/usr/bin/avprobe -v error -show_format_entry duration "${v}"`
if [ -n $dur ]
then
# Convert the float to int
dur=${dur%.*}
if [ $dur -ge $DUR_MIN -a $dur -le $DUR_MAX ]
then
valid="${valid}\n$v"
fi
fi
done
printf "${valid}\n"
exit