美文网首页
03 centos7中安装ffmpeg

03 centos7中安装ffmpeg

作者: 张力的程序园 | 来源:发表于2020-11-03 19:57 被阅读0次

    这一节我们了解一下如何在centos7中安装ffmpeg。

    1、环境约束

    • Centos 7
    • ffmpeg-4-1

    2、操作步骤

    • 使用xshell或者putty以root登录到centos7
    • 执行以下的命令,安装yasm
    #下载源码包
    wget http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz
    # 解压
    tar zxvf yasm-1.3.0.tar.gz
    #进入目录
    cd yasm-1.3.0  
    #配置 
    ./configure 
    #编译安装
    make && make install 
    
    • 执行以下命令,安装ffmpeg
    # 进到家目录
    cd
    # 下载安装包
    wget https://johnvansickle.com/ffmpeg/release-source/ffmpeg-4.1.tar.xz
    # 解压
    tar -xvf ffmpeg-4.1.tar.xz
    # 进入文件夹
    cd ffmpeg-4.1
    # 配置
    ./configure
    # 编译安装
    make && make install
    
    • 测试,确保ffmpeg-4.1文件夹下已经存在wanho.mp4
    ./ffmpeg -i wanho.mp4 -force_key_frames "expr:gte(t,n_forced*10)" -c:v libx264 -hls_time 10 -hls_list_size 0 -c:a aac -strict -2 -f hls wanho.m3u8
    

    以上就是在centos7中安装和使用ffmpeg的过程。

    相关文章

      网友评论

          本文标题:03 centos7中安装ffmpeg

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