We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cb6288 commit 3d00bfcCopy full SHA for 3d00bfc
.ebextensions/ffmpeg.config
@@ -0,0 +1,20 @@
1
+packages:
2
+ yum:
3
+ wget: []
4
+ tar: []
5
+
6
+commands:
7
+ 01-download-ffmpeg:
8
+ command: "wget -O /tmp/ffmpeg.tar.xz https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-3.4.2-64bit-static.tar.xz"
9
10
+ 02-create-dir:
11
+ command: "mkdir -p /opt/ffmpeg"
12
13
+ 03-extract:
14
+ command: "tar -xvf /tmp/ffmpeg.tar.xz -C /opt/ffmpeg --strip-components=1"
15
16
+ 04-link-ffmpeg:
17
+ command: "ln -sf /opt/ffmpeg/ffmpeg /usr/bin/ffmpeg"
18
19
+ 05-link-ffprobe:
20
+ command: "ln -sf /opt/ffmpeg/ffprobe /usr/bin/ffprobe"
0 commit comments