Install ffmpeg on elastic beanstalk using ebextensions config

前端 未结 6 2154
忘了有多久
忘了有多久 2020-12-24 09:32

I\'m attempting to install an up to date version of ffmpeg on an elastic beanstalk instance on amazon servers. I\'ve created my config file and added these container_command

6条回答
  •  不思量自难忘°
    2020-12-24 09:41

    add the following to your .ebextensions/packages.config

    packages:
      yum:
        ImageMagick: []
    
    sources:
      /usr/local/bin: http://ffmpeg.org/releases/ffmpeg-4.1.tar.gz
    

提交回复
热议问题