Skip to content

Commit bf32ce5

Browse files
committed
Use ffmpeg 8.0.1
1 parent 0f9fa2e commit bf32ce5

File tree

5 files changed

+7
-41
lines changed

5 files changed

+7
-41
lines changed

.github/workflows/smoke.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
fail-fast: false
3636
matrix:
3737
config:
38-
- {os: ubuntu-24.04, python: "3.14t", ffmpeg: "8.0", extras: true}
39-
- {os: ubuntu-24.04, python: "3.12", ffmpeg: "8.0", extras: true}
40-
- {os: ubuntu-24.04, python: "pypy3.10", ffmpeg: "8.0"}
41-
- {os: macos-14, python: "3.10", ffmpeg: "8.0"}
38+
- {os: ubuntu-24.04, python: "3.14t", ffmpeg: "8.0.1", extras: true}
39+
- {os: ubuntu-24.04, python: "3.12", ffmpeg: "8.0.1", extras: true}
40+
- {os: ubuntu-24.04, python: "pypy3.10", ffmpeg: "8.0.1"}
41+
- {os: macos-14, python: "3.10", ffmpeg: "8.0.1"}
4242

4343
env:
4444
PYAV_PYTHON: python${{ matrix.config.python }}
@@ -76,7 +76,7 @@ jobs:
7676
fi
7777
;;
7878
macos-14)
79-
brew install automake libtool nasm libpng libvorbis libvpx opus x264
79+
brew install automake libtool libpng libvorbis libvpx opus x264
8080
;;
8181
esac
8282
@@ -149,7 +149,6 @@ jobs:
149149
. $CONDA/etc/profile.d/conda.sh
150150
conda activate pyav
151151
python scripts\\fetch-vendor.py --config-file scripts\\ffmpeg-${{ matrix.config.ffmpeg }}.json $CONDA_PREFIX\\Library
152-
python scripts\\comptime.py ${{ matrix.config.ffmpeg }}
153152
python setup.py build_ext --inplace --ffmpeg-dir=$CONDA_PREFIX\\Library
154153
155154
- name: Test

scripts/build

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,4 @@ ffmpeg -version || exit 3
2222
echo
2323

2424
$PYAV_PIP install -U --pre cython setuptools 2> /dev/null
25-
"$PYAV_PYTHON" scripts/comptime.py
2625
"$PYAV_PYTHON" setup.py config build_ext --inplace || exit 1

scripts/comptime.py

Lines changed: 0 additions & 32 deletions
This file was deleted.

scripts/ffmpeg-8.0.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0-2/ffmpeg-{platform}.tar.gz"
2+
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0.1-1/ffmpeg-{platform}.tar.gz"
33
}

scripts/ffmpeg-latest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0-2/ffmpeg-{platform}.tar.gz"
2+
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0.1-1/ffmpeg-{platform}.tar.gz"
33
}

0 commit comments

Comments
 (0)