forked from homebrew-ffmpeg/homebrew-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add OpenVINO support (homebrew-ffmpeg#148)
* add OpenVINO support * fix lib name * fix lib name * fix homebrew syntax
- Loading branch information
1 parent
192591f
commit 3b87c1a
Showing
2 changed files
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ class Ffmpeg < Formula | |
version "6.1-with-options" # to distinguish from homebrew-core's ffmpeg | ||
sha256 "488c76e57dd9b3bee901f71d5c95eaf1db4a5a31fe46a28654e837144207c270" | ||
license "GPL-2.0-or-later" | ||
revision 1 | ||
revision 2 | ||
head "https://github.com/FFmpeg/FFmpeg.git", branch: "master" | ||
|
||
option "with-chromaprint", "Enable the Chromaprint audio fingerprinting library" | ||
|
@@ -29,6 +29,7 @@ class Ffmpeg < Formula | |
option "with-openh264", "Enable OpenH264 library" | ||
option "with-openjpeg", "Enable JPEG 2000 image format" | ||
option "with-openssl", "Enable SSL support" | ||
option "with-openvino", "Enable OpenVINO" | ||
option "with-rav1e", "Enable AV1 encoding via librav1e" | ||
option "with-svt-av1", "Enable Scalable Video Technology for AV1" | ||
option "with-rtmpdump", "Enable RTMP dumping support" | ||
|
@@ -86,6 +87,7 @@ class Ffmpeg < Formula | |
depends_on "openh264" => :optional | ||
depends_on "openjpeg" => :optional | ||
depends_on "[email protected]" => :optional | ||
depends_on "openvino" => :optional | ||
depends_on "rav1e" => :optional | ||
depends_on "rtmpdump" => :optional | ||
depends_on "rubberband" => :optional | ||
|
@@ -171,6 +173,7 @@ def install | |
args << "--enable-libopenh264" if build.with? "openh264" | ||
args << "--enable-libopenjpeg" if build.with? "openjpeg" | ||
args << "--enable-libopenmpt" if build.with? "libopenmpt" | ||
args << "--enable-openvino" if build.with? "openvino" | ||
args << "--enable-librav1e" if build.with? "rav1e" | ||
args << "--enable-libsvtav1" if build.with? "svt-av1" | ||
args << "--enable-librist" if build.with? "librist" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters