diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ded1052b5..5d6ff810a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -170,11 +170,11 @@ jobs: python=${{ matrix.config.python }} \ setuptools if [[ "${{ matrix.config.ffmpeg }}" == "5.1" ]]; then - curl -L -o ffmpeg.tar.gz https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/5.1.2-1/ffmpeg-win_amd64.tar.gz + curl -L -o ffmpeg.tar.gz https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/5.1.3-1/ffmpeg-win_amd64.tar.gz elif [[ "${{ matrix.config.ffmpeg }}" == "5.0" ]]; then - curl -L -o ffmpeg.tar.gz https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/5.0.1-1/ffmpeg-win_amd64.tar.gz + curl -L -o ffmpeg.tar.gz https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/5.0.3-1/ffmpeg-win_amd64.tar.gz elif [[ "${{ matrix.config.ffmpeg }}" == "4.4" ]]; then - curl -L -o ffmpeg.tar.gz https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/4.4.1-8/ffmpeg-win_amd64.tar.gz + curl -L -o ffmpeg.tar.gz https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/4.4.4-1/ffmpeg-win_amd64.tar.gz else conda install -q -n pyav ffmpeg=${{ matrix.config.ffmpeg }} fi diff --git a/docs/overview/installation.rst b/docs/overview/installation.rst index 9ac4dc078..648910ee6 100644 --- a/docs/overview/installation.rst +++ b/docs/overview/installation.rst @@ -11,7 +11,7 @@ Since release 8.0.0 binary wheels are provided on PyPI for Linux, Mac and Window pip install av -Currently FFmpeg 5.1.2 is used with the following features enabled for all platforms: +Currently FFmpeg 5.1.3 is used with the following features enabled for all platforms: - fontconfig - gmp diff --git a/scripts/fetch-vendor.json b/scripts/fetch-vendor.json index 2a02f285b..75e4b8eca 100644 --- a/scripts/fetch-vendor.json +++ b/scripts/fetch-vendor.json @@ -1,3 +1,3 @@ { - "urls": ["https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/5.1.2-1/ffmpeg-{platform}.tar.gz"] + "urls": ["https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/5.1.3-1/ffmpeg-{platform}.tar.gz"] }