From eb8293732d5d316680de695bd6001d456d27b59e Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 2 Feb 2017 23:17:22 +0100 Subject: [PATCH] Remove hint to fork since that is very insecure. --- source/_components/ffmpeg.markdown | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/source/_components/ffmpeg.markdown b/source/_components/ffmpeg.markdown index 26767905fd1..db663d96988 100644 --- a/source/_components/ffmpeg.markdown +++ b/source/_components/ffmpeg.markdown @@ -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 %}