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

Fix ffmpeg install on macos #329

Merged
merged 26 commits into from
May 17, 2024
Merged
Changes from 16 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
11 changes: 9 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,21 @@ jobs:

- uses: actions/checkout@v4

- name: Setup FFmpeg
uses: Iamshankhadeep/setup-ffmpeg@v1.1
- if: matrix.os == 'ubuntu-latest'
name: Setup FFmpeg
uses: Iamshankhadeep/setup-ffmpeg@v1.1 # does not support arm64
with:
# Not strictly necessary, but it may prevent rate limit
# errors especially on GitHub-hosted macos machines.
token: ${{ secrets.GITHUB_TOKEN }}
version: "4.4"

- if: matrix.os == 'macos-latest'
name: Setup FFmpeg
run: |
brew install ffmpeg@4
jayqi marked this conversation as resolved.
Show resolved Hide resolved
echo "/opt/homebrew/opt/ffmpeg@4/bin" >> $GITHUB_PATH

- name: Configure Windows compilers
uses: ilammy/msvc-dev-cmd@v1

Expand Down
Loading