回答:
ffprobe -i some_video -show_entries format=duration -v quiet -of csv="p=0"
動画の長さを秒単位で返します。
次のようなもの:
ffmpeg -i input 2>&1 | grep "Duration"| cut -d ' ' -f 4 | sed s/,//
これにより、以下が実現しますHH:MM:SS.ms
。ffprobe
ほとんどのFFmpegインストールで提供されるを使用することもできます。
ffprobe -show_format input | sed -n '/duration/s/.*=//p'
… または:
ffprobe -show_format input | grep duration | sed 's/.*=//')
秒に変換する(およびミリ秒を保持する)には、以下にパイプします。
awk '{ split($1, A, ":"); print 3600*A[1] + 60*A[2] + A[3] }'
ミリ秒に変換するには、以下にパイプします。
awk '{ split($1, A, ":"); print 3600000*A[1] + 60000*A[2] + 1000*A[3] }'
ミリ秒のない秒のみが必要な場合は、以下にパイプしてください。
awk '{ split($1, A, ":"); split(A[3], B, "."); print 3600*A[1] + 60*A[2] + B[1] }'
例:
ffprobe
とともにパッケージ化された目的の正確これらの並べ替えのために設計されたツール、ffmpeg
:ffprobe -show_format input | sed -n '/duration/s/.*=//p'
(またはffprobe -show_format input | grep duration | sed 's/.*=//'
)。たぶん、@ slhckはこれを直接編集して答えにすることができます。
にアクセスできないffprobe
場合は、を使用できますmediainfo
。
# Outputs a decimal number in seconds
mediainfo some_video --Output=JSON | jq '.media.track[0].Duration' | tr -d '"'`
jq
とtr
:mediainfo --Output="General;%Duration/String%" input
X s YYY ms
対X.YYY
。| sed -e 's/ s /./' -e 's/ ms//'
あなたがそのルートに行きたい場合に調整するのに十分簡単で、アクセスできませんjq
。
mediainfo --Output="General;%Duration/String3%" input
output 00:01:48.501
に変更できます1 min 48 s
。