在Windows等其他平台中安装FFmpeg

在Windows中安装FFmpeg

对于一个用户(您自己)

  1. 下载共享或静态版本

    共享的版本在磁盘上较小,并且具有较高的性能。静态版本的文件较少。

  2. 将其解压缩到您选择的文件夹中。

  3. 编辑您的PATH环境变量以包含FFmpeg。一种实现方法如下:

    警告:

    • Internet上的来源可能建议使用setx.exe来修改您的PATH环境变量。不幸的是,这种方法不可靠,因为setx.exe对其编辑内容一无所知。

    1. 打开Windows PowerShell。

    2. 在对其进行修改以使其具有包含的文件夹的正确路径之后,在PowerShell中键入以下行ffmpeg.exe

    $ffmpeg = 'F:\FFmpeg\bin'
    1. 将以下行复制并粘贴到PowerShell中。

    $path = [Environment]::GetEnvironmentVariable('Path', 'User').TrimEnd([Char]';')
    [Environment]::SetEnvironmentVariable("Path", "$path;$ffmpeg", 'User')

对于多个用户(每台机器)

  1. 下载共享或静态版本

    共享的版本在磁盘上较小,并且具有较高的性能。静态版本的文件较少。

  2. 将其解压缩到C:\Program Files\ffmpeg

  3. 编辑您的PATH环境变量以包含FFmpeg。一种实现方法如下:

    警告:

    • Internet上的来源可能建议使用setx.exe /M来修改您的PATH环境变量。不幸的是,这种方法非常危险,因为setx.exe /M对其编辑内容一无所知。

    1. 使用管理权限打开Windows PowerShell 

    2. 将以下行复制并粘贴到PowerShell中。

    $ffmpeg = 'C:\Program Files\ffmpeg\bin'
    $path = [Environment]::GetEnvironmentVariable('Path', 'Machine').TrimEnd([Char]';')
    [Environment]::SetEnvironmentVariable("Path", "$path;$ffmpeg", 'Machine')

在OS X中安装FFmpeg

以下是指向说明的几个链接:
http://www.idiotinside.com/2016/05/01/ffmpeg-mac-os-x/
http://macappstore.org/ffmpeg/

在Ubuntu中安装FFmpeg

sudo add-apt-repository ppa:mc3man/trusty-media  sudo apt-get update  sudo apt-get install ffmpeg  sudo apt-get install frei0r-plugins

对Ubuntu用户有用的链接:http : //wiki.razuna.com/display/ecp/FFmpeg+Installation+for+Ubuntu#FFmpegInstallationforUbuntu-Installlibfdk-aac
http://www.webupd8.org/2014/11/ffmpeg-returns -to-official-ubuntu.html
http://linuxg.net/how-to-install-ffmpeg-2-6-1-on-ubuntu-15-04-ubuntu-14-10-ubuntu-14-04- and-derivative-systems /
http://ffmpeg.org/download.html
http://askubuntu.com/questions/432542/is-ffmpeg-missing-from-the-official-repositories-in-14-04

版权声明:
作者:WaterBear
链接:https://l-t.top/1580.html
来源:雷霆运维
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>