doitandbedone / ispyagentdvr-docker

GNU General Public License v3.0
116 stars 44 forks source link

FFmpeg 6 update on Docker #643

Closed alexbn71 closed 1 year ago

alexbn71 commented 1 year ago

..it doesn't work. I see the message "Agent DVR: Installing FFmpeg 6" but nothing happen. Can we do this install manually inside the container?

Thanks Alex

ispysoftware commented 1 year ago

Hey Alex, not sure what's going on with this docker version but this one is confirmed working on latest version https://hub.docker.com/r/mekayelanik/ispyagentdvr

alexbn71 commented 1 year ago

I've already tried it but I preferred to stay on the more historic one. I see that in the new versions ffmpeg v5 is still installed inside the container... maybe it would be enough to redo the container with version 6 inside?

ispysoftware commented 1 year ago

yes should be ok, i need to make some changes to the docker file, something like removing the ffmpeg5 build stuff and replace it with

RUN echo "Downloading ffmpeg" && \ wget -c "https://ispyrtcdata.blob.core.windows.net/downloads/ffmpeg6-linuxx64.tar.xz" -O ffmpeg.zip; \ unzip ffmpeg.zip -d /agent/ffmpeg6 && \ rm ffmpeg.zip

RUN tar -xvf /agent/ffmpeg6/ffmpeg.tar.xz --strip-components=1 -C "/agent/ffmpeg6"

... but haven't had a proper chance to test it yet