Update ffmpeg min version

This commit is contained in:
Chocobozzz 2020-08-11 16:21:29 +02:00
parent 52c4976fcf
commit f309a156a6
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 26 additions and 34 deletions

View File

@ -166,7 +166,7 @@ Feel free to reach out if you have any questions or ideas! :speech_balloon:
* **Redis >= 2.8.18**
* **NodeJS >= 10.x**
* **yarn >= 1.x**
* **FFmpeg >= 3.x**
* **FFmpeg >= 4.1**
See the [production guide](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md), which is the recommended way to install or upgrade PeerTube. For hardware requirements, see [Should I have a big server to run PeerTube?](https://github.com/Chocobozzz/PeerTube/blob/develop/FAQ.md#should-i-have-a-big-server-to-run-peertube) in the FAQ.

View File

@ -37,18 +37,10 @@
```
sudo apt update
sudo apt install nginx ffmpeg postgresql postgresql-contrib openssl g++ make redis-server git python-dev
ffmpeg -version # Should be >= 3.x
ffmpeg -version # Should be >= 4.1
g++ -v # Should be >= 5.x
```
If you still have a 2.x version of FFmpeg on Ubuntu:
```
sudo add-apt-repository ppa:jonathonf/ffmpeg-3
sudo apt-get update
sudo apt install ffmpeg
```
Now that dependencies are installed, before running PeerTube you should start PostgreSQL and Redis:
```
@ -194,7 +186,7 @@ This is necessary because `ffmpeg` is not in the Fedora repos.
```
sudo dnf install nginx ffmpeg postgresql-server postgresql-contrib openssl gcc-c++ make redis git
ffmpeg -version # Should be >= 3.x
ffmpeg -version # Should be >= 4.1
g++ -v # Should be >= 5.x
```