zoukankan      html  css  js  c++  java
  • Centos 7 安装 FFmpeg

    Step 1: Update the system

    sudo yum install epel-release -y
    sudo yum update -y
    sudo shutdown -r now
    

    Step 2: Install the Nux Dextop YUM repo

    There are no official FFmpeg rpm packages for CentOS for now. Instead, you can use a 3rd-party YUM repo, Nux Dextop, to finish the job.

    On CentOS 7, you can install the Nux Dextop YUM repo with the following commands:

    sudo rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
    sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
    

    For CentOS 6, you need to install another release:

    sudo rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
    sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el6/x86_64/nux-dextop-release-0-2.el6.nux.noarch.rpm
    

    Step 3: Install FFmpeg and FFmpeg development packages

    sudo yum install ffmpeg ffmpeg-devel -y
    

    Step 4: Test drive

    1) Confirm the installation of FFmpeg:

    ffmpeg
    

    This command provides detailed info about FFmpeg installed on your system. At the time of writing, the version of FFmpeg installed using Nux dextop is 2.6.8.

    If you want to learn more about FFmpeg, input:

    ffmpeg -h
    

    2) Convert an mp3 audio file to an ogg audio file.

    You need to determine the appropriate parameters when using FFmpeg. For example, you can convert an mp3 file to an ogg file using the following commands:

    cd
    wget https://archive.org/download/MLKDream/MLKDream_64kb.mp3
    ffmpeg -i MLKDream_64kb.mp3 -c:a libvorbis -q:a 4 MLKDream_64kb.ogg
    

    3) Convert an flv video file to an mp4 video file.

    Here is an example of lossless conversion from flv to mp4:

    cd
    wget https://archive.org/download/beeenieilp/beeen.flv
    ffmpeg -i beeen.flv -y -vcodec copy -acodec copy beeen.mp4
    

    That concludes our tutorial. Thank you for reading.

  • 相关阅读:
    jmeter 安装
    Day05_系统监控、rpm、yum软件包管理及源码安装python解释器
    Day04_vim编辑器及硬盘操作
    Day03_用户群组权限及正文处理命令
    Day02_操作系统、网络及Linux基础
    Day01_计算机硬件及启动流程
    让Sublime Text成为静态WEB服务器:SublimeServer
    sublime text2-text3 定义的不同浏览器的预览快捷键
    css之px自动转rem—“懒人”必备
    修改Sublime Text3 的侧边栏字体大小
  • 原文地址:https://www.cnblogs.com/kzwrcom/p/7009843.html
Copyright © 2011-2022 走看看