Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Formula/ffmpeg.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
class Ffmpeg < Formula
desc "Play, record, convert, and stream audio and video"
homepage "https://ffmpeg.org/"
url "https://ffmpeg.org/releases/ffmpeg-7.1.1.tar.xz"
version "7.1.1-with-options" # to distinguish from homebrew-core's ffmpeg
sha256 "733984395e0dbbe5c046abda2dc49a5544e7e0e1e2366bba849222ae9e3a03b1"
url "https://ffmpeg.org/releases/ffmpeg-8.0.tar.xz"
version "8.0-with-options" # to distinguish from homebrew-core's ffmpeg
sha256 "5fce5cb87690d93b6cc9cbbf8a1d9c9bd5b89f949f2c935e43335121a1ec84dd"
license "GPL-2.0-or-later"
head "https://github.com/FFmpeg/FFmpeg.git", branch: "master"

Expand Down Expand Up @@ -221,6 +221,6 @@
# Create an example mp4 file
mp4out = testpath/"video.mp4"
system bin/"ffmpeg", "-filter_complex", "testsrc=rate=1:duration=1", mp4out
assert_predicate mp4out, :exist?

Check failure on line 224 in Formula/ffmpeg.rb

View workflow job for this annotation

GitHub Actions / tests (ubuntu-latest)

Use `assert_path_exists <path_to_file>` instead of `assert_predicate mp4out, :exist?`

Check failure on line 224 in Formula/ffmpeg.rb

View workflow job for this annotation

GitHub Actions / tests (ubuntu-latest)

Use `assert_path_exists <path_to_file>` instead of `assert_predicate mp4out, :exist?`

Check failure on line 224 in Formula/ffmpeg.rb

View workflow job for this annotation

GitHub Actions / tests (macOS-latest)

Use `assert_path_exists <path_to_file>` instead of `assert_predicate mp4out, :exist?`

Check failure on line 224 in Formula/ffmpeg.rb

View workflow job for this annotation

GitHub Actions / tests (macOS-latest)

Use `assert_path_exists <path_to_file>` instead of `assert_predicate mp4out, :exist?`
end
end
Loading