Install ffmpeg on elastic beanstalk using ebextensions config

前端 未结 6 2148
忘了有多久
忘了有多久 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:40

    Check cloud-init logs for messages. On a Linux instance, that would be:

    grep "03-ffmpeg" /var/log/eb-cfn-init.log
    

    Also, you can log to another file to make errors easier to find:

    command: ln -s /usr/local/bin/ffmpeg /usr/bin/ffmpeg >> /var/log/my-init.log
    

提交回复
热议问题