mac环境安装ffmpeg可以使用brew安装,
1、前往ffmpeg官网,下载页面
http://www.ffmpeg.org/download.html
首先需要安装下brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
接着就可以使用brew安装ffmpeg了
brew install ffmpeg
安装完成后,启动一下
ffmpeg
1.pcm转mp3
ffmpeg -f s16le -ar 48000 -ac 1 -i test.pcm -ar 8000 -y test_8k.mp3
2.pcm重采样
ffmpeg -f s16le -ar 48000 -ac 1 -i test.pcm -f s16le -ar 8000 -y test_8k.pcm
3.mp3转pcm
ffmpeg -i test.mp3 -f s16le -y test_8k.pcm
4.opus转wav
ffmpeg -i localMic_8_3_3.opus -ac 1 -ar 16000 test_2.wav
5.wav转mp3
ffmpeg -i test_2.wav -f mp3 -acodec libmp3lame test_2.mp3
5.自作无声的mp3(test_2.mp3有声 自作出ll.mp3无声 )
ffmpeg -i test_2.mp3 -vol 000 ll.mp3