Skip to content

Commit 17aff95

Browse files
authored
Updates for ffmpeg 5.1.1. (#4)
* Updates for ffmpeg 5.1.1. * Accidentally committed a tarball. * Updated the README. * Updated the README.
1 parent 4afeb3f commit 17aff95

13 files changed

+310
-2266
lines changed

Formula/ffmpeg-skyzyx.rb

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
class FfmpegSkyzyx < Formula
22
desc "Play, record, convert, and stream audio and video"
33
homepage "https://ffmpeg.org/"
4-
url "https://ffmpeg.org/releases/ffmpeg-4.4.tar.xz"
5-
sha256 "06b10a183ce5371f915c6bb15b7b1fffbe046e8275099c96affc29e17645d909"
4+
url "https://ffmpeg.org/releases/ffmpeg-5.1.1.tar.xz"
5+
sha256 "95bf3ff8c496511e71e958fb249e663c8c9c3de583c5bebc0f5a9745abbc0435"
66
revision 1
77
head "https://github.com/FFmpeg/FFmpeg.git"
88

@@ -31,7 +31,6 @@ class FfmpegSkyzyx < Formula
3131
depends_on "lame"
3232
depends_on "libaacs"
3333
depends_on "libass"
34-
depends_on "libav"
3534
depends_on "libbluray"
3635
depends_on "libffi"
3736
depends_on "libgsm"
@@ -56,6 +55,7 @@ class FfmpegSkyzyx < Formula
5655
depends_on "shtool"
5756
depends_on "snappy"
5857
depends_on "speex"
58+
depends_on "srt"
5959
depends_on "tesseract"
6060
depends_on "theora"
6161
depends_on "two-lame"
@@ -223,6 +223,7 @@ def install
223223
--enable-libsnappy
224224
--enable-libsoxr
225225
--enable-libspeex
226+
--enable-libsrt
226227
--enable-libtesseract
227228
--enable-libtheora
228229
--enable-libtwolame

Makefile

+8-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
# coreutils/findutils versions
21
# https://ryanparman.com/posts/2019/using-gnu-command-line-tools-in-macos-instead-of-freebsd-tools/
3-
AWK=/usr/local/opt/gawk/libexec/gnubin/awk
4-
GREP=/usr/local/opt/grep/libexec/gnubin/grep
5-
NPROC=/usr/local/opt/coreutils/libexec/gnubin/nproc
6-
SED=/usr/local/opt/gnu-sed/libexec/gnubin/sed
7-
SORT=/usr/local/opt/coreutils/libexec/gnubin/sort
8-
TEE=/usr/local/opt/coreutils/libexec/gnubin/tee
9-
UNIQ=/usr/local/opt/coreutils/libexec/gnubin/uniq
10-
XARGS=/usr/local/opt/findutils/libexec/gnubin/xargs
2+
AWK="$(shell brew --prefix gawk)/libexec/gnubin/awk"
3+
GREP="$(shell brew --prefix grep)/libexec/gnubin/grep"
4+
NPROC="$(shell brew --prefix coreutils)/libexec/gnubin/nproc"
5+
SED="$(shell brew --prefix gnu-sed)/libexec/gnubin/sed"
6+
SORT="$(shell brew --prefix coreutils)/libexec/gnubin/sort"
7+
TEE="$(shell brew --prefix coreutils)/libexec/gnubin/tee"
8+
UNIQ="$(shell brew --prefix coreutils)/libexec/gnubin/uniq"
9+
XARGS="$(shell brew --prefix findutils)/libexec/gnubin/xargs"
1110

1211
#-------------------------------------------------------------------------------
1312

0 commit comments

Comments
 (0)