2021-12-28 20:45:30 +01:00
FFmpeg builds for GNU/Linux & Windows (with Cygwin)
===================================================
2015-10-16 19:14:59 +02:00
2021-12-28 20:45:30 +01:00
### FFmpeg 4.4.1 Builds:
2015-10-16 19:14:59 +02:00
2021-12-28 20:45:30 +01:00
* **`GNU/Linux downloads (Static):` **
2021-12-26 18:31:52 +01:00
* Generic (All distros):
2021-12-28 20:45:30 +01:00
* [ffmpeg-4.4.1-linux-gnu-32bit-build.tar.bz2 ](https://github.com/q3aql/ffmpeg-builds/releases/download/v4.4.1/ffmpeg-4.4.1-linux-gnu-32bit-build.tar.bz2 )
* [ffmpeg-4.4.1-linux-gnu-64bit-build.tar.bz2 ](https://github.com/q3aql/ffmpeg-builds/releases/download/v4.4.1/ffmpeg-4.4.1-linux-gnu-64bit-build.tar.bz2 )
2021-12-26 18:31:52 +01:00
* DEB (Debian Based):
2021-12-28 20:45:30 +01:00
* [ffmpeg-4.4.1-linux-gnu-32bit-build.deb ](https://github.com/q3aql/ffmpeg-builds/releases/download/v4.4.1/ffmpeg-4.4.1-linux-gnu-32bit-build.deb )
* [ffmpeg-4.4.1-linux-gnu-64bit-build.deb ](https://github.com/q3aql/ffmpeg-builds/releases/download/v4.4.1/ffmpeg-4.4.1-linux-gnu-64bit-build.deb )
2021-12-26 18:31:52 +01:00
* RPM (RedHat Based):
2021-12-28 20:45:30 +01:00
* [ffmpeg-4.4.1-linux-gnu-32bit-build.rpm ](https://github.com/q3aql/ffmpeg-builds/releases/download/v4.4.1/ffmpeg-4.4.1-linux-gnu-32bit-build.rpm )
* [ffmpeg-4.4.1-linux-gnu-64bit-build.rpm ](https://github.com/q3aql/ffmpeg-builds/releases/download/v4.4.1/ffmpeg-4.4.1-linux-gnu-64bit-build.rpm )
* **`Windows downloads (with Cygwin):` **
* [ffmpeg-4.4.1-win-32bit-build-cygwin.zip ](https://github.com/q3aql/ffmpeg-builds/releases/download/v4.4.1/ffmpeg-4.4.1-win-32bit-build-cygwin.zip )
2021-12-28 20:46:47 +01:00
* [ffmpeg-4.4.1-win-64bit-build-cygwin.zip ](https://github.com/q3aql/ffmpeg-builds/releases/download/v4.4.1/ffmpeg-4.4.1-win-64bit-build-cygwin.zip )
2015-10-16 19:14:59 +02:00
2021-12-30 11:10:00 +01:00
### HOW TO INSTALL:
2015-10-16 19:14:59 +02:00
2021-12-26 18:31:52 +01:00
* **GNU/Linux instructions:**
* Open the terminal and type the following command:
```shell
2021-12-28 20:53:58 +01:00
$ sudo tar jxvf ffmpeg-4.4.1-linux-gnu-[arch]-build.tar.bz2 -C /
2021-12-26 18:31:52 +01:00
````
2021-12-30 11:10:00 +01:00
_Note: Replace `[arch]` with `linux32` or `linux64` depending on your architecture._
2021-12-28 20:45:30 +01:00
* **Windows instructions:**
2021-12-30 11:10:00 +01:00
* Download the package ([32 bits ](https://github.com/q3aql/ffmpeg-builds/releases/download/v4.4.1/ffmpeg-4.4.1-win-32bit-build-cygwin.zip ) or [64 bits ](https://github.com/q3aql/ffmpeg-builds/releases/download/v4.4.1/ffmpeg-4.4.1-win-64bit-build-cygwin.zip ))
2021-12-28 20:45:30 +01:00
* Unzip the package with [7-zip ](http://www.7-zip.org/ ) or [Winrar ](http://www.rarlab.com/ ).
* Copy the files to a folder. For example: `C:\Program Files\FFmpeg`
2021-12-30 09:50:35 +01:00
* Add the path `C:\Program Files\FFmpeg` to [PATH ](https://www.google.es/search?q=add+folder+to+PATH+on+Windows ) variable.
2021-12-30 11:10:00 +01:00
### HOW TO CREATE YOUR BUILD:
* **GNU/Linux instructions:**
2021-12-30 11:12:46 +01:00
* Install dependencies in your GNU/Linux distro.
2021-12-30 11:10:00 +01:00
* Dependencies: `wget` , `git` , `gcc` , `g++` , `yasm` , `nasm` , `make` , `meson` , `ninja` . `gperf` , `autoconf` and `libtool`
* Type the following commands:
```shell
$ git clone https://github.com/q3aql/ffmpeg-builds/
$ cd ffmpeg-builds
$ sudo ./ffmpeg-static-build-[arch].sh
````
_Note: Replace `[arch]` with `linux32` or `linux64` depending on your architecture._
* **Windows instructions:**
* Install Cywin for [32bits ](https://cygwin.com/setup-x86.exe ) or [64bits ](https://cygwin.com/setup-x86_64.exe ).
2021-12-30 11:12:46 +01:00
* During installation, `configure the repository` and install `git` and `wget` .
2021-12-30 11:10:00 +01:00
* Open Cygwin terminal and type the following commands:
2021-12-30 11:12:46 +01:00
```shell
2021-12-30 11:10:00 +01:00
$ git clone https://github.com/q3aql/ffmpeg-builds/
$ cd ffmpeg-builds
$ ./ffmpeg-share-build-[arch].sh
````
_Note: Replace `[arch]` with `cygwin32` or `cygwin64` depending on your architecture._
2015-10-16 19:14:59 +02:00
2021-12-26 18:31:52 +01:00
### Related links:
2015-10-16 19:14:59 +02:00
2021-12-26 18:31:52 +01:00
* [FFmpeg homepage ](https://ffmpeg.org/ )
* [FFmpeg Linux builds by John ](https://johnvansickle.com/ffmpeg/ )
* [FFmpeg Win64/Linux64 Builds by Btbn ](https://github.com/BtbN/FFmpeg-Builds )
* [FFmpeg Win32 Builds ](https://github.com/sudo-nautilus/FFmpeg-Builds-Win32 )
2015-10-16 19:14:59 +02:00