ffmpeg-builds/README.md

72 lines
2.7 KiB
Markdown
Raw Normal View History

2022-01-15 19:45:28 +01:00
FFmpeg builds for GNU/Linux & Windows
=====================================
2015-10-16 19:14:59 +02:00
2023-03-06 21:47:10 +01:00
### FFmpeg 6.0 Builds:
2015-10-16 19:14:59 +02:00
2021-12-28 20:45:30 +01:00
* **`GNU/Linux downloads (Static):`**
2023-03-06 21:47:10 +01:00
* [ffmpeg-6.0-linux-gnu-64bit-build.tar.bz2](https://drive.proton.me/urls/X8M0SJ5VBR#vH6D1iCPqfXt) (Generic Linux x86_64)
* [ffmpeg-6.0-linux-gnu-64bit-build.deb](https://drive.proton.me/urls/X8M0SJ5VBR#vH6D1iCPqfXt) (Debian/Ubuntu x86_64)
* [ffmpeg-6.0-linux-gnu-64bit-build.rpm](https://drive.proton.me/urls/X8M0SJ5VBR#vH6D1iCPqfXt) (RedHat/Fedora x86_64)
2021-12-28 20:45:30 +01:00
2022-01-15 19:13:02 +01:00
* **`Windows downloads (Shared):`**
2021-12-28 20:45:30 +01:00
2023-03-06 21:47:10 +01:00
* [ffmpeg-6.0-win-64bit-build.zip](https://drive.proton.me/urls/X8M0SJ5VBR#vH6D1iCPqfXt)
* [ffmpeg-6.0-win-64bit-build.zip](https://drive.proton.me/urls/X8M0SJ5VBR#vH6D1iCPqfXt)
2022-04-08 16:53:13 +02:00
2021-12-30 11:10:00 +01:00
### HOW TO INSTALL:
2015-10-16 19:14:59 +02:00
* **GNU/Linux instructions:**
2021-12-30 11:58:16 +01:00
2023-03-06 21:47:10 +01:00
* Download the package.
* Open the terminal and type the following command:
```shell
2023-03-06 21:47:10 +01:00
$ sudo tar jxvf ffmpeg-6.0-linux-gnu-64bit-build.tar.bz2 -C /
2021-12-30 12:00:28 +01:00
```
2021-12-30 11:10:00 +01:00
2021-12-28 20:45:30 +01:00
* **Windows instructions:**
2021-12-30 11:10:00 +01:00
2023-03-06 21:47:10 +01:00
* Download the package.
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`
* 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
2022-10-12 12:51:41 +02:00
$ git clone https://gitlab.com/q3aql/ffmpeg-builds
2021-12-30 11:10:00 +01:00
$ cd ffmpeg-builds
$ sudo ./ffmpeg-static-build-[arch].sh
2021-12-30 12:00:28 +01:00
```
2021-12-30 11:10:00 +01:00
_Note: Replace `[arch]` with `linux32` or `linux64` depending on your architecture._
* **Windows instructions:**
2022-10-04 19:44:38 +02:00
* Install Cygwin 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
2022-10-12 12:51:41 +02:00
$ git clone https://gitlab.com/q3aql/ffmpeg-builds
2021-12-30 11:10:00 +01:00
$ cd ffmpeg-builds
$ ./ffmpeg-share-build-[arch].sh
2021-12-30 12:00:28 +01:00
```
2021-12-30 11:10:00 +01:00
_Note: Replace `[arch]` with `cygwin32` or `cygwin64` depending on your architecture._
2015-10-16 19:14:59 +02:00
### Related links:
2015-10-16 19:14:59 +02: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