計算video中總frame數
total frame
ffmpeg -i foo.avi -vcodec copy -f rawvideo -y /dev/null 2>&1 | tr ^M
'\n' | awk '/^frame=/ {print $2}'|tail -n 1
FPS
ffmpeg -i test.avi
transcode
tcprobe -i foo.avi
total frame
ffmpeg -i foo.avi -vcodec copy -f rawvideo -y /dev/null 2>&1 | tr ^M
'\n' | awk '/^frame=/ {print $2}'|tail -n 1
FPS
ffmpeg -i test.avi
transcode
tcprobe -i foo.avi
於 下午4:34