README.md

This commit is contained in:
q3aql 2023-03-07 22:28:13 +01:00
parent 6918f97766
commit ca2d3eb929

View File

@ -1,64 +1,62 @@
FFmpeg builds for GNU/Linux & Windows FFmpeg builds for GNU/Linux & Windows
===================================== =====================================
### FFmpeg 6.0 Builds: ### FFmpeg 6.0 Builds2:
* **`GNU/Linux downloads (Static):`** * **`GNU/Linux downloads (Static):`**
* [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-build2.tar.bz2](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy) (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-build2.deb](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy) (Debian/Ubuntu x86_64)
* [ffmpeg-6.0-linux-gnu-64bit-build.rpm](https://drive.proton.me/urls/X8M0SJ5VBR#vH6D1iCPqfXt) (RedHat/Fedora x86_64) * [ffmpeg-6.0-linux-gnu-64bit-build2.rpm](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy) (RedHat/Fedora x86_64)
* **`Windows downloads (Shared):`** * **`Windows downloads (Shared):`**
* [ffmpeg-6.0-win-64bit-build.zip](https://drive.proton.me/urls/X8M0SJ5VBR#vH6D1iCPqfXt) * [ffmpeg-6.0-win-64bit-build2.zip](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy)
* [ffmpeg-6.0-win-64bit-build.exe](https://drive.proton.me/urls/X8M0SJ5VBR#vH6D1iCPqfXt) * [ffmpeg-6.0-win-64bit-build2.exe](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy)
* [ffmpeg-6.0-cygwin-64bit-build2.tar.gz](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy)
### HOW TO INSTALL: ### HOW TO INSTALL:
* **GNU/Linux instructions:** * **GNU/Linux instructions:**
* Download the package. * Download the package [ffmpeg-6.0-linux-gnu-64bit-build2.tar.bz2](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy).
* Open the terminal and type the following command: * Open the terminal and type the following command for install:
`$ sudo tar jxvf ffmpeg-6.0-linux-gnu-64bit-build2.tar.bz2 -C /`
```shell
$ sudo tar jxvf ffmpeg-6.0-linux-gnu-64bit-build.tar.bz2 -C /
```
* **Windows instructions:** * **Windows instructions:**
* Download the package. * Download the package [ffmpeg-6.0-win-64bit-build2.zip](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy).
* Unzip the package with [7-zip](http://www.7-zip.org/) or [Winrar](http://www.rarlab.com/). * 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` * 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. * Add the path `C:\Program Files\FFmpeg` to [PATH](https://www.google.es/search?q=add+folder+to+PATH+on+Windows) variable.
* **Cygwin instructions:**
* Download the package [ffmpeg-6.0-cygwin-64bit-build2.tar.gz](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy).
* Open the Cygwin terminal and type the following command for install:
`$ sudo tar jxvf ffmpeg-6.0-cygwin-64bit-build2.tar.gz -C /`
### HOW TO CREATE YOUR BUILD: ### HOW TO CREATE YOUR BUILD:
* **GNU/Linux instructions:** * **GNU/Linux instructions:**
* Install dependencies in your GNU/Linux distro. * Install dependencies in your GNU/Linux distro.
* Dependencies: `wget`, `git`, `gcc`, `g++`, `yasm`, `nasm`, `make`, `meson`, `ninja`. `gperf`, `autoconf` and `libtool` * Dependencies: `wget`, `git`, and `lynx`
* Type the following commands: * Type the following commands:
`$ git clone https://gitlab.com/q3aql/ffmpeg-builds`
```shell `$ cd ffmpeg-builds`
$ git clone https://gitlab.com/q3aql/ffmpeg-builds `$ sudo ./ffmpeg-static-build-[arch].sh`
$ cd ffmpeg-builds
$ sudo ./ffmpeg-static-build-[arch].sh
```
_Note: Replace `[arch]` with `linux32` or `linux64` depending on your architecture._ _Note: Replace `[arch]` with `linux32` or `linux64` depending on your architecture._
* **Windows instructions:** * **Windows instructions:**
* Install Cygwin for [32bits](https://cygwin.com/setup-x86.exe) or [64bits](https://cygwin.com/setup-x86_64.exe). * Install Cygwin for [32bits](https://cygwin.com/setup-x86.exe) or [64bits](https://cygwin.com/setup-x86_64.exe).
* During installation, `configure the repository` and install `git` and `wget`. * During installation, `configure the repository` and install `git` and `wget` or `lynx`.
* Open Cygwin terminal and type the following commands: * Open Cygwin terminal and type the following commands:
`$ git clone https://gitlab.com/q3aql/ffmpeg-builds`
```shell `$ cd ffmpeg-builds`
$ git clone https://gitlab.com/q3aql/ffmpeg-builds `$ ./ffmpeg-share-build-[arch].sh`
$ cd ffmpeg-builds
$ ./ffmpeg-share-build-[arch].sh
```
_Note: Replace `[arch]` with `cygwin32` or `cygwin64` depending on your architecture._ _Note: Replace `[arch]` with `cygwin32` or `cygwin64` depending on your architecture._