MallocArray / obico-oraclecloud

Self Hosted Obico server on Oracle Cloud Free Tier
53 stars 3 forks source link

Timelapses dont render: cannot find ffmpeg #17

Closed snupple closed 1 year ago

snupple commented 1 year ago

I have this in my log:

obico-server-tasks-1 | FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg': 'ffmpeg

MallocArray commented 1 year ago

There was a bug in the server release recently that prevented ffmpeg from being installed. It is recommended to switch to the pre-release branch to resolve it for now until the update gets pushed to the release branch https://discord.com/channels/614543405724205137/661368008781987841/1148661763345219674

snupple commented 1 year ago

Thanks for the quick reply...

I am a bit of a noob on the whole git thing, whats the best way of doing what you suggested?

MallocArray commented 1 year ago

Assuming you can SSH to the instance

cd /obico-server
git checkout pre-release
git pull
docker-compose up --build -d

I believe this Stack does a daily update (I can't remember if that is in this code, or if I change it to daily only for myself) but you may need to edit /usr/obico-update.sh to change from release to pre-release for now

snupple commented 1 year ago

Great, did all that - thanks!