ffmpeg常见用法总结
Posted yuanziming
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ffmpeg常见用法总结相关的知识,希望对你有一定的参考价值。
1. 视频/音频剪切:
ffmpeg -i input.mp3 [-ss 00:00:10] [-t 00:00:20] output.mp3
- 去掉-ss指令表示从头开始
- 去掉-t指令表示剪切到结尾
2. wav转MP3:
ffmpeg -i input.wav -acodec libmp3lame output.mp3
3. 视频/音频连接:
创建input.txt
file ‘/input/1.mp3‘
file ‘/input/2.mp3‘
file ‘/input/3.mp3‘
然后输入命令
ffmpeg -safe 0 -f concat -i input.txt output.mp3
以后遇到再更新
以上是关于ffmpeg常见用法总结的主要内容,如果未能解决你的问题,请参考以下文章