Remove hint to fork since that is very insecure.

This commit is contained in:
Pascal Vizeli 2017-02-02 23:17:22 +01:00 committed by GitHub
parent ebecd9fce6
commit eb8293732d

View File

@ -30,14 +30,16 @@ Configuration variables:
### {% linkable_title Raspbian Debian Jessie Lite Installations %}
To get the binary on Raspbian Debian Jessie Lite on a RPi you need to perform the following:
```bash
$ sudo echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/sources.list
$ sudo apt-get update
$ sudo apt-get -t jessie-backports install ffmpeg
```
$ sudo apt-get install libav-tools
```
This will get a forked version of ffmpeg called avconv, once this is installed you need to use the following in the configuration:
```
ffmpeg:
ffmpeg_bin: /usr/bin/avconv
ffmpeg_bin: /usr/bin/ffmpeg
```
### {% linkable_title Troubleshooting %}