ffmpeg的简单使用测试

1 资源文件的转换

将MOV的视频文件转换为mp4格式的视频文件
查看是否存在需要转换的视频文件
![在这里插入图片描述](https://img-blog.csdnimg.cn/20191203112827531.png

fmpeg -y -i 10.MOV -vcodec h263 -ab 128 -acodec mp3 -ac 2 -ar 22050 -r 29.97 -c:v libx264 -strict -2 1mov.mp4

转换完查找文件是否成功
在这里插入图片描述

2 截取图片

ffmpeg -ss 00:00:05 -i 1mov.mp4 -f image2 -y testmov1.jpg

遇到问题:
在这里插入图片描述
解决方法:参考文档【1】
This usually occurs because the output name is incorrect or some option was omitted.
• If outputting a single image you need to include -frames:v 1.
• If outputting a series of images you need to use the proper naming pattern as described in the image muxer documentation. For example, output_%03d.png will make a series named output_001.png, output_002.png, output_003.png, etc.
• If outputting a single image that is continuously overwritten with new images, add -update 1.
修改后的命令:

ffmpeg -ss 00:00:05.500 -i 1mov.mp4 -f image2 -y -frames:v 1  testmov3.jpg

在这里插入图片描述
注:安装完成ffmpeg后,检查安装成功。在测试使用时遇到问题,特此整理该文档
参考文档:
【1】http://trac.ffmpeg.org/wiki/Errors

你可能感兴趣的:(linux)