You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added Debian Jessie Installation instructions for ffmpeg (#1049)
* Added Debian Jessie Installation instructions
Adding instructions to use the avconv version of ffmpeg instead of compiling ffmpeg
* Added missing install
* Added Raspbian
Corrected is of Raspbian
Copy file name to clipboardExpand all lines: source/_components/ffmpeg.markdown
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,18 @@ Configuration variables:
28
28
- **ffmpeg_bin** (*Optional*): Default 'ffmpeg'. The name or path to the `ffmpeg` binary.
29
29
- **run_test** (*Optional*): Default True. Check if `input` is usable by ffmpeg.
30
30
31
+
### {% linkable_title Raspbian Debian Jessie Lite Installations %}
32
+
To get the binary on Raspbian Debian Jessie Lite on a RPi you need to perform the following:
33
+
```
34
+
$ sudo apt-get install libav-tools
35
+
```
36
+
This will get a forked version of ffmpeg called avconv, once this is installed you need to use the following in the configuration:
37
+
38
+
```
39
+
ffmpeg:
40
+
ffmpeg_bin: /usr/bin/avconv
41
+
```
42
+
31
43
### {% linkable_title Troubleshooting %}
32
44
33
45
In most cases, `ffmpeg` automatically detects all needed options to read a video or audio stream or file. But it is possible in rare cases that you will need to set options to help `ffmpeg` out.
0 commit comments