在Windows等其他平台中安装FFmpeg
在Windows中安装FFmpeg
对于一个用户(您自己)
-
共享的版本在磁盘上较小,并且具有较高的性能。静态版本的文件较少。
-
将其解压缩到您选择的文件夹中。
-
编辑您的
PATH
环境变量以包含FFmpeg。一种实现方法如下:警告:
-
Internet上的来源可能建议使用
setx.exe
来修改您的PATH
环境变量。不幸的是,这种方法不可靠,因为setx.exe
对其编辑内容一无所知。 -
打开Windows PowerShell。
-
在对其进行修改以使其具有包含的文件夹的正确路径之后,在PowerShell中键入以下行
ffmpeg.exe
。 -
将以下行复制并粘贴到PowerShell中。
$ffmpeg = 'F:\FFmpeg\bin'
$path = [Environment]::GetEnvironmentVariable('Path', 'User').TrimEnd([Char]';') [Environment]::SetEnvironmentVariable("Path", "$path;$ffmpeg", 'User')
对于多个用户(每台机器)
-
共享的版本在磁盘上较小,并且具有较高的性能。静态版本的文件较少。
-
将其解压缩到
C:\Program Files\ffmpeg
。 -
编辑您的
PATH
环境变量以包含FFmpeg。一种实现方法如下:警告:
-
Internet上的来源可能建议使用
setx.exe /M
来修改您的PATH
环境变量。不幸的是,这种方法非常危险,因为setx.exe /M
对其编辑内容一无所知。 -
使用管理权限打开Windows PowerShell 。
-
将以下行复制并粘贴到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