您的位置:首页 > 其它

几条 ffmpeg 视频处理命令

2018-01-17 14:15 274 查看
视频转码:ffmpeg -i test.webm -vcodec copy -f mp4 test.mp4
提取图片:ffmpeg -i test.mp4 example%d.jpg去除logo预览:
ffplay -i test.mp4 -vf delogo=x=624:y=335:w=30:h=36:show=1保存:
ffmpeg -i test.mp4 -vf delogo=x=624:y=335:w=30:h=36 output.mp4
模糊:ffplay -i test.mp4 -vf delogo=x=600:y=235:w=70:h=82:band=500:show=1 ffplay -i test.mp4 -vf delogo=x=600:y=235:w=70:h=82:band=1:show=1因为暂时只用到这几个,以后用到再补充
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: