指定ffmpeg 编码格式
时间: 2024-01-12 15:22:46 浏览: 138
FFmpeg - 编码/录制麦克风声音并保存为mp3文件
以下是两种指定ffmpeg编码格式的例子:
1. 使用mp2音频编码器:
```shell
ffmpeg -i input.wav -acodec mp2 -ar 44100 -ac 2 -ab 128k -y output.mp2
```
这个命令将输入的音频文件input.wav转换为mp2格式的音频文件output.mp2。
2. 使用libfdk_aac音频编码器:
```shell
ffmpeg -i input.wav -acodec libfdk_aac -y output.aac
```
这个命令将输入的音频文件input.wav转换为AAC格式的音频文件output.aac。
阅读全文