Skip to content

Commit 58b672b

Browse files
committed
FFMPEG 8.0
1 parent 31f353c commit 58b672b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.ci/build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ make install;
5757
make distclean;
5858

5959
cd ~/ffmpeg_sources;
60-
curl -kLO "https://cfhcable.dl.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
60+
curl -kLO "https://downloads.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
6161
tar xzf "lame-$LAME_VERSION.tar.gz"
6262
cd "lame-$LAME_VERSION"
6363
./configure --prefix="$BUILD_DIR" --enable-nasm --enable-shared;

.ci/build_wheels_osx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ if [ "$ARCH" = "x86_64" ]; then
127127
arg=("--enable-nasm")
128128
fi
129129
cd "$SRC_PATH";
130-
curl -kLO "https://cfhcable.dl.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
130+
curl -kLO "https://downloads.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
131131
tar xzf "lame-$LAME_VERSION.tar.gz"
132132
cd "lame-$LAME_VERSION"
133133
git apply "$base_dir/.ci/libmp3lame-symbols.patch"

.github/workflows/pythonapp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Python application
33
on: [push, pull_request]
44

55
env:
6-
FFMPEG_VERSION: "6.0" # https://ffmpeg.org/releases/
6+
FFMPEG_VERSION: "8.0" # https://ffmpeg.org/releases/
77
SDL_VERSION: "2.26.4" # https://github.com/libsdl-org/SDL/releases
88
SDL_MIXER_VERSION: "2.6.3" # https://github.com/libsdl-org/SDL_mixer/releases
99
USE_SDL2_MIXER: "1"
@@ -170,10 +170,10 @@ jobs:
170170
needs: linux_wheels
171171
steps:
172172
- uses: actions/checkout@v4.2.2
173-
- name: Set up Python 3.x
173+
- name: Set up Python 3.13
174174
uses: actions/setup-python@v5.4.0
175175
with:
176-
python-version: 3.x
176+
python-version: 3.13 # 3.14 fails!
177177
- uses: actions/download-artifact@v4.2.1
178178
with:
179179
pattern: py_wheel-*

0 commit comments

Comments
 (0)