Skip to content

Commit

Permalink
Merge pull request #131 from SSU-Plector/issue/123-sound-note
Browse files Browse the repository at this point in the history
Issue/123 sound note
  • Loading branch information
chanmin-00 authored Jul 9, 2024
2 parents 484bfbf + 0f83996 commit 824ac3e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .ebextensions-dev/02-ffmpeg-package.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ packages:
ImageMagick: []
ImageMagick-devel: []
php-pear: []
php-devel: []
php-cli: []

commands:
01-wget:
command: "wget -O /tmp/ffmpeg.tar.xz https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz"
02-mkdir:
command: "if [ ! -d /opt/ffmpeg ] ; then mkdir -p /opt/ffmpeg; fi"
03-tar:
command: "tar xvf /tmp/ffmpeg.tar.xz -C /opt/ffmpeg"
04-ln:
command: "if [[ ! -f /usr/bin/ffmpeg ]] ; then ln -sf /opt/ffmpeg/ffmpeg-4.2.2-amd64-static/ffmpeg /usr/bin/ffmpeg; fi"
05-ln:
command: "if [[ ! -f /usr/bin/ffprobe ]] ; then ln -sf /opt/ffmpeg/ffmpeg-4.2.2-amd64-static/ffprobe /usr/bin/ffprobe; fi"
06-pecl-install:
command: "if ! pecl list | grep imagick; then pecl install -f imagick; fi"
command: "tar xvf /tmp/ffmpeg.tar.xz -C /opt/ffmpeg --strip-components=1"
04-ln-ffmpeg:
command: "if [[ ! -f /usr/bin/ffmpeg ]] ; then ln -sf /opt/ffmpeg/ffmpeg /usr/bin/ffmpeg; fi"
05-ln-ffprobe:
command: "if [[ ! -f /usr/bin/ffprobe ]] ; then ln -sf /opt/ffmpeg/ffprobe /usr/bin/ffprobe; fi"
06-pecl:
command: "if ! pecl list | grep -q imagick ; then pecl install -f imagick; fi"

0 comments on commit 824ac3e

Please sign in to comment.