diff --git a/.github/actions/reusable-prepare-peertube-run/action.yml b/.github/actions/reusable-prepare-peertube-run/action.yml index aa5b897c9ff..e2d219265f6 100644 --- a/.github/actions/reusable-prepare-peertube-run/action.yml +++ b/.github/actions/reusable-prepare-peertube-run/action.yml @@ -9,8 +9,11 @@ runs: shell: bash run: | sudo apt-get install postgresql-client-common redis-tools parallel libimage-exiftool-perl - wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.3.1-64bit-static.tar.xz" - tar xf ffmpeg-release-4.3.1-64bit-static.tar.xz + wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.4.1-64bit-static.tar.xz" + wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-6.0.1-amd64-static.tar.xz" + tar xf ffmpeg-release-4.4.1-64bit-static.tar.xz + tar xf ffmpeg-6.0.1-amd64-static.tar.xz mkdir -p $HOME/bin - cp ffmpeg-*/{ffmpeg,ffprobe} $HOME/bin + cp ffmpeg-6.0.1-amd64-static/ffprobe $HOME/bin + cp ffmpeg-4.4.1-amd64-static/ffmpeg $HOME/bin echo "$HOME/bin" >> $GITHUB_PATH