美文网首页
Mac下安装 ffmpeg

Mac下安装 ffmpeg

作者: Steven054 | 来源:发表于2021-12-09 13:10 被阅读0次

    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
    

    相关文章

      网友评论

          本文标题:Mac下安装 ffmpeg

          本文链接:https://www.haomeiwen.com/subject/ydrffrtx.html