We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f351a7 commit d128b1aCopy full SHA for d128b1a
.github/workflows/testing-all-oses.yml
@@ -46,9 +46,6 @@ jobs:
46
run: |
47
sudo apt-get update
48
sudo apt-get install -y ffmpeg
49
- - if: ${{ startsWith(matrix.os, 'macos') }}
50
- run: |
51
- brew install ffmpeg
52
- name: Run tests
53
timeout-minutes: 40
54
# The ignored files can somehow cause the test suite to timeout.
with-recording
@@ -5,7 +5,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
5
ffmpeg -framerate 25 -f x11grab -i :99 recording.mp4 &
6
recording_pid=$!
7
elif [[ "$OSTYPE" == "darwin"* ]]; then
8
- ffmpeg -framerate 25 -f avfoundation -i 0:0 recording.mp4 &
+ /usr/sbin/screencapture -v -C -k -T0 -g recording.mp4 &
9
10
fi
11
0 commit comments