We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d669480 commit 0bfa6daCopy full SHA for 0bfa6da
.github/workflows/main.yml
@@ -24,6 +24,24 @@ jobs:
24
uses: actions/setup-python@v4
25
with:
26
python-version: ${{ matrix.python-version }}
27
+
28
+ - name: Install PyAV dependencies (Ubuntu)
29
+ if: matrix.os == 'ubuntu-latest'
30
+ run: |
31
+ sudo apt-get update
32
+ sudo apt-get install -y \
33
+ libavformat-dev libavcodec-dev libavdevice-dev \
34
+ libavutil-dev libswscale-dev libswresample-dev libavfilter-dev
35
36
+ - name: Install PyAV dependencies (MacOS)
37
+ if: matrix.os == 'macos-latest'
38
39
+ brew install ffmpeg
40
41
+ - name: Install PyAV dependencies (Windows)
42
+ if: matrix.os == 'windows-latest'
43
44
+ choco install ffmpeg
45
46
- name: Install Chrome (Ubuntu)
47
if: matrix.os == 'ubuntu-latest'
0 commit comments