KASM-5378 Use the latest (6.1) static build of FFMPEG

This commit is contained in:
Mariusz Marciniak 2024-01-18 13:22:57 +01:00
parent a054d3b689
commit 52b6ca1921
No known key found for this signature in database
2 changed files with 8 additions and 1 deletions

View File

@ -93,6 +93,13 @@ RUN bash $INST_SCRIPTS/printer/install_printer.sh && rm -rf $INST_SCRIPTS/printe
COPY ./src/ubuntu/install/printer/resources/*.ppd /etc/cups/ppd/
### Install Recorder Service
RUN apt-get remove -y ffmpeg
RUN wget -q "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz"
RUN tar -xf ffmpeg-release-amd64-static.tar.xz -C .
RUN cp ./ffmpeg-6.1-amd64-static/ffmpeg /usr/local/bin
RUN rm -rf ./ffmpeg-*
COPY ./src/ubuntu/install/recorder $INST_SCRIPTS/recorder/
RUN bash $INST_SCRIPTS/recorder/install_recorder.sh && rm -rf $INST_SCRIPTS/recorder

View File

@ -12,7 +12,7 @@ elif [ "${DISTRO}" == "opensuse" ]; then
zypper install -ny xhost
fi
COMMIT_ID="c1fb295699b044a731e4ef3369808cbd39da1567"
COMMIT_ID="3bfd31d0a88c4d74ace9d7c7d12a95bc7f8ce7b7"
BRANCH="feature_KASM-5446-refactor-kasm-recorder-service-to-attempt-to-eliminate-deadlocks-and-corrupt-videos"
COMMIT_ID_SHORT=$(echo "${COMMIT_ID}" | cut -c1-6)