Answers:
试试看 ffmpeg
ffmpeg -i inputfile.avi -r 1 -f image2 image-%3d.jpeg
您可以在这里阅读文档
-i inputfile.avi
视频输入文件为inputfile.avi-r 1
每秒提取1张图像。将该数字替换为您每秒想要获取的图像数。-f image2
强制使用图像输出格式,由于程序尝试从文件扩展名中选择输出图像格式,因此您可能可以省略此格式。image-%3d.jpeg
输出图像的名称,%3d表示输出的生成图像的序列号的后半部分为3个小数,如果要用零填充数字,则只需要使用%03d。-r 1
是每秒的图像数。因此,对于60ips或24ips而言-r 24
。为了限制摘录,它是-ss [start] -t [duration]
。
希望有帮助
#!/bin/bash
source_dir="."
output_dir="."
input_file_types=(avi wmv flv mkv mpg mp4)
output_file_type="jpg"
convert() {
echo "" | ffmpeg -ss $ss -y -i "$in_file" -an -f image2 -vframes 1 "$output_dir/$out_file"
}
for input_file_types in "${input_file_types[@]}"
do
find "$source_dir" -name "*.$input_file_types" -print0 | while IFS= read -r -d $'\0' in_file
do
echo "Processing…"
echo ">Input "$in_file
# Replace the file type
out_file=$(echo $in_file|sed "s/\(.*\.\)$input_file_types/\1$output_file_type/g")
echo ">Output "$out_file
# get video duration
# fulltime=`ffmpeg -i "$in_file" 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,//`;
# hour=`echo $fulltime | cut -d ':' -f 1`;
# minute=`echo $fulltime | cut -d ':' -f 2`;
# second=`echo $fulltime | cut -d ':' -f 3 | cut -d '.' -f 1`;
# seconds=`expr 3600 \* $hour + 60 \* $minute + $second`;
# ss=`expr $seconds / 2`; # from the middle of video
ss=`expr 10`; # from the 10sec of video
# Convert the file
convert "$in_file" "$out_file"
if [ $? != 0 ]
then
echo "$in_file had problems" >> ffmpeg-errors.log
fi
echo ">Finished "$out_file "\n\n"
done
done