Anyway to include ffmpeg in appdaemon docker?

Is there anyway to include ffmpeg in appdaemon docker? I’d like to use ffmpeg to combine mp3 files from TTS with a chime wav file and cache it locally.

Thanks!

You need to build a new docker image using the appdaemon image is a base and add whatever modules you need.

Thanks for the reply!

To whoever needs this, here’s the Dockerfile to include ffmpeg with appdaemon:

FROM acockburn/appdaemon:latest

RUN apt-get update && apt-get install -y ffmpeg
1 Like