141 lines
3.6 KiB
Ruby
141 lines
3.6 KiB
Ruby
class Ffmpeg < Formula
|
|
desc "Play, record, convert, and stream audio and video"
|
|
homepage "https://ffmpeg.org/"
|
|
# None of these parts are used by default, you have to explicitly pass `--enable-gpl`
|
|
# to configure to activate them. In this case, FFmpeg's license changes to GPL v2+.
|
|
license "GPL-2.0-or-later"
|
|
head "https://github.com/FFmpeg/FFmpeg.git"
|
|
|
|
stable do
|
|
url "https://ffmpeg.org/releases/ffmpeg-4.3.2.tar.xz"
|
|
sha256 "46e4e64f1dd0233cbc0934b9f1c0da676008cad34725113fb7f802cfa84ccddb"
|
|
end
|
|
|
|
livecheck do
|
|
url "https://ffmpeg.org/download.html"
|
|
regex(/href=.*?ffmpeg[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 arm64_big_sur: "0515c9f60fc6d3975f0ce707414426a62484e6974cd1fd121e5e55457556afc7"
|
|
sha256 big_sur: "c749fddc306f2bce4d15ca20cc8e1f7b28082dd381af57486c72a641e71f0ccf"
|
|
sha256 catalina: "ed0fc90c66b35c84a904ba01ab3e37c31a0c63a64889b2ab99718288d52404e4"
|
|
sha256 mojave: "33cc1c8ede50ab0b7f38a37c1a85c9060165334200f59d735dd8bd8627508f0d"
|
|
end
|
|
|
|
depends_on "nasm" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "aom"
|
|
depends_on "dav1d"
|
|
depends_on "fontconfig"
|
|
depends_on "freetype"
|
|
depends_on "frei0r"
|
|
depends_on "gnutls"
|
|
depends_on "lame"
|
|
depends_on "libass"
|
|
depends_on "libbluray"
|
|
depends_on "libsoxr"
|
|
depends_on "libvidstab"
|
|
depends_on "libvorbis"
|
|
depends_on "libvpx"
|
|
depends_on "opencore-amr"
|
|
depends_on "openjpeg"
|
|
depends_on "opus"
|
|
depends_on "rav1e"
|
|
depends_on "rtmpdump"
|
|
depends_on "rubberband"
|
|
depends_on "sdl2"
|
|
depends_on "snappy"
|
|
depends_on "speex"
|
|
depends_on "srt"
|
|
depends_on "tesseract"
|
|
depends_on "theora"
|
|
depends_on "webp"
|
|
depends_on "x264"
|
|
depends_on "x265"
|
|
depends_on "xvid"
|
|
depends_on "xz"
|
|
depends_on "zeromq"
|
|
depends_on "zimg"
|
|
|
|
uses_from_macos "bzip2"
|
|
uses_from_macos "libxml2"
|
|
uses_from_macos "zlib"
|
|
|
|
on_linux do
|
|
depends_on "libxv"
|
|
end
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--enable-shared
|
|
--enable-pthreads
|
|
--enable-version3
|
|
--enable-avresample
|
|
--cc=#{ENV.cc}
|
|
--host-cflags=#{ENV.cflags}
|
|
--host-ldflags=#{ENV.ldflags}
|
|
--enable-ffplay
|
|
--enable-gnutls
|
|
--enable-gpl
|
|
--enable-libaom
|
|
--enable-libbluray
|
|
--enable-libdav1d
|
|
--enable-libmp3lame
|
|
--enable-libopus
|
|
--enable-librav1e
|
|
--enable-librubberband
|
|
--enable-libsnappy
|
|
--enable-libsrt
|
|
--enable-libtesseract
|
|
--enable-libtheora
|
|
--enable-libvidstab
|
|
--enable-libvorbis
|
|
--enable-libvpx
|
|
--enable-libwebp
|
|
--enable-libx264
|
|
--enable-libx265
|
|
--enable-libxml2
|
|
--enable-libxvid
|
|
--enable-lzma
|
|
--enable-libfontconfig
|
|
--enable-libfreetype
|
|
--enable-frei0r
|
|
--enable-libass
|
|
--enable-libopencore-amrnb
|
|
--enable-libopencore-amrwb
|
|
--enable-libopenjpeg
|
|
--enable-librtmp
|
|
--enable-libspeex
|
|
--enable-libsoxr
|
|
--enable-libzmq
|
|
--enable-libzimg
|
|
--disable-libjack
|
|
--disable-indev=jack
|
|
]
|
|
|
|
on_macos do
|
|
# Needs corefoundation, coremedia, corevideo
|
|
args << "--enable-videotoolbox"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
|
|
# Build and install additional FFmpeg tools
|
|
system "make", "alltools"
|
|
bin.install Dir["tools/*"].select { |f| File.executable? f }
|
|
|
|
# Fix for Non-executables that were installed to bin/
|
|
mv bin/"python", pkgshare/"python", force: true
|
|
end
|
|
|
|
test do
|
|
# Create an example mp4 file
|
|
mp4out = testpath/"video.mp4"
|
|
system bin/"ffmpeg", "-filter_complex", "testsrc=rate=1:duration=1", mp4out
|
|
assert_predicate mp4out, :exist?
|
|
end
|
|
end
|