diff options
author | Millicent Billette <git@1000i100.fr> | 2018-03-15 14:39:27 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-03-15 14:39:27 +0100 |
commit | 955f14a44a7a56f2744e29f6253891054813a300 (patch) | |
tree | 0ab526f39bd93f9e6d287107ffe52f0c0cdcf952 /support/doc/dependencies.md | |
parent | ef48a0d50aec99472340fa0995e1739113190147 (diff) | |
download | PeerTube-955f14a44a7a56f2744e29f6253891054813a300.tar.gz PeerTube-955f14a44a7a56f2744e29f6253891054813a300.tar.zst PeerTube-955f14a44a7a56f2744e29f6253891054813a300.zip |
ppa for ffmpeg in dependencies documentation (#340)
Diffstat (limited to 'support/doc/dependencies.md')
-rw-r--r-- | support/doc/dependencies.md | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/support/doc/dependencies.md b/support/doc/dependencies.md index 75539c073..6624919ba 100644 --- a/support/doc/dependencies.md +++ b/support/doc/dependencies.md | |||
@@ -2,11 +2,11 @@ | |||
2 | 2 | ||
3 | ## Debian / Ubuntu and derivatives | 3 | ## Debian / Ubuntu and derivatives |
4 | 1. On a fresh Debian/Ubuntu, as root user, install basic utility programs needed for the installation | 4 | 1. On a fresh Debian/Ubuntu, as root user, install basic utility programs needed for the installation |
5 | 5 | ||
6 | ``` | 6 | ``` |
7 | # apt-get install curl sudo unzip vim | 7 | # apt-get install curl sudo unzip vim |
8 | ``` | 8 | ``` |
9 | 9 | ||
10 | 2. It would be wise to disable root access and to continue this tutorial with a user with sudoers group access | 10 | 2. It would be wise to disable root access and to continue this tutorial with a user with sudoers group access |
11 | 11 | ||
12 | 3. Install certbot (choose instructions for nginx and your distribution) : | 12 | 3. Install certbot (choose instructions for nginx and your distribution) : |
@@ -20,10 +20,17 @@ | |||
20 | ``` | 20 | ``` |
21 | $ sudo apt update | 21 | $ sudo apt update |
22 | $ sudo apt install nginx ffmpeg postgresql openssl g++ make redis-server git | 22 | $ sudo apt install nginx ffmpeg postgresql openssl g++ make redis-server git |
23 | $ ffmpeg -version # Should be >= 3.x | 23 | $ ffmpeg -version # Should be >= 3.x |
24 | $ g++ -v # Should be >= 5.x | 24 | $ g++ -v # Should be >= 5.x |
25 | ``` | 25 | ``` |
26 | 26 | ||
27 | if you still have a 2.x ffmpeg version on ubuntu-server : | ||
28 | ``` | ||
29 | $ sudo add-apt-repository ppa:jonathonf/ffmpeg-3 | ||
30 | $ sudo apt-get update | ||
31 | $ sudo apt install ffmpeg | ||
32 | ``` | ||
33 | |||
27 | ## Arch Linux | 34 | ## Arch Linux |
28 | 35 | ||
29 | 1. Run: | 36 | 1. Run: |
@@ -53,4 +60,3 @@ $ sudo yum install nginx postgresql postgresql-server openssl gcc make redis git | |||
53 | ## Other distributions | 60 | ## Other distributions |
54 | 61 | ||
55 | Feel free to update this file in a pull request! | 62 | Feel free to update this file in a pull request! |
56 | |||