-
Notifications
You must be signed in to change notification settings - Fork 285
Installing FFmpeg
Note: As of authoring tool release v0.7.0 (2019-03-25), manual FFmpeg installation is no longer necessary. Please only follow the below instructions for earlier versions.
-
Download a shared or static build.
Shared builds are smaller on the disk and have higher performance. Static builds have fewer files.
-
Unpack it into the folder of your choice.
-
Edit your
PATH
environment variable to include FFmpeg. One way of doing it is the following:-
Open Windows PowerShell.
-
Type the following line in PowerShell, after modifying it to have the correct path to the folder containing
ffmpeg.exe
.$ffmpeg = 'F:\FFmpeg\bin'
-
Copy and paste the following lines into PowerShell.
$path = [Environment]::GetEnvironmentVariable('Path', 'User').TrimEnd([Char]';') [Environment]::SetEnvironmentVariable("Path", "$path;$ffmpeg", 'User')
Warning:
- Sources on the Internet may suggest using
setx.exe
to modify yourPATH
environment variable. Unfortunately, this approach is unreliable, becausesetx.exe
is blind as to what it edits.
-
-
Download a shared or static build.
Shared builds are smaller on the disk and have higher performance. Static builds have fewer files.
-
Unpack it into
C:\Program Files\ffmpeg
. -
Edit your
PATH
environment variable to include FFmpeg. One way of doing it is the following:-
Open Windows PowerShell with administrative privileges.
-
Copy and paste the following lines into PowerShell.
$ffmpeg = 'C:\Program Files\ffmpeg\bin' $path = [Environment]::GetEnvironmentVariable('Path', 'Machine').TrimEnd([Char]';') [Environment]::SetEnvironmentVariable("Path", "$path;$ffmpeg", 'Machine')
Warning:
- Sources on the Internet may suggest using
setx.exe /M
to modify yourPATH
environment variable. Unfortunately, this approach is extremely dangerous, becausesetx.exe /M
is blind as to what it edits.
-
Here are a couple of links to instructions:
http://www.idiotinside.com/2016/05/01/ffmpeg-mac-os-x/
http://macappstore.org/ffmpeg/
sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get update
sudo apt-get install ffmpeg
sudo apt-get install frei0r-plugins
Helpful links for Ubuntu users:
- 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