We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cb6288 commit a9a9e09Copy full SHA for a9a9e09
1 file changed
.ebextensions/ffmpeg.config
@@ -0,0 +1,18 @@
1
+packages:
2
+ yum:
3
+ ImageMagick: []
4
+ ImageMagick-devel: []
5
+
6
+commands:
7
+ 01-wget:
8
+ command: "wget -O /tmp/ffmpeg.tar.xz https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-3.4.2-64bit-static.tar.xz"
9
+ 02-mkdir:
10
+ command: "mkdir -p /opt/ffmpeg"
11
+ 03-tar:
12
+ command: "tar xvf /tmp/ffmpeg.tar.xz -C /opt/ffmpeg"
13
+ 04-ln-ffmpeg:
14
+ command: "if [ ! -f /usr/bin/ffmpeg ]; then ln -sf /opt/ffmpeg/ffmpeg-3.4.2-64bit-static/ffmpeg /usr/bin/ffmpeg; fi"
15
+ 05-ln-ffprobe:
16
+ command: "if [ ! -f /usr/bin/ffprobe ]; then ln -sf /opt/ffmpeg/ffmpeg-3.4.2-64bit-static/ffprobe /usr/bin/ffprobe; fi"
17
+ 06-pecl-imagick:
18
+ command: "pecl list | grep imagick || pecl install -f imagick"
0 commit comments