Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build FFmpeg 7.0 #15

Merged
merged 5 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ source common.sh

if [ ! -e $FFMPEG_TARBALL ]
then
curl -O $FFMPEG_TARBALL_URL
curl -s -L -O $FFMPEG_TARBALL_URL
fi

: ${TARGET?}
Expand Down
7 changes: 4 additions & 3 deletions common.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

FFMPEG_VERSION=5.1.2
FFMPEG_TARBALL=ffmpeg-$FFMPEG_VERSION.tar.bz2
FFMPEG_VERSION=7.0
FFMPEG_TARBALL=ffmpeg-$FFMPEG_VERSION.tar.gz
FFMPEG_TARBALL_URL=http://ffmpeg.org/releases/$FFMPEG_TARBALL

FFMPEG_CONFIGURE_FLAGS=(
Expand All @@ -14,15 +14,16 @@ FFMPEG_CONFIGURE_FLAGS=(
--disable-avdevice
--disable-swscale
--disable-programs
--enable-rdft
--enable-ffmpeg
--enable-ffprobe
--disable-network
--disable-muxers
--disable-demuxers
--disable-zlib
--disable-lzma
--disable-bzlib
--disable-iconv
--disable-libxcb
--disable-bsfs
--disable-filters
--disable-parsers
Expand Down
Loading