Skip to content

Commit 45d2727

Browse files
committed
[build] Shorten test video duration for Windows builds
The value originally should have been 10 seconds.
1 parent 3fe6ffc commit 45d2727

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/build-windows.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,11 @@ jobs:
111111

112112
- name: Test
113113
run: |
114+
echo Testing binary
114115
./build/scenedetect version
115-
./build/scenedetect -i tests/resources/goldeneye.mp4 -b opencv detect-content time --end 00:10:00
116-
./build/scenedetect -i tests/resources/goldeneye.mp4 -b pyav detect-content time --end 00:10:00
117-
./build/scenedetect -i tests/resources/goldeneye.mp4 detect-content time --end 00:10:00 split-video
116+
echo Test OpenCV
117+
./build/scenedetect -i tests/resources/goldeneye.mp4 -b opencv detect-content time --end 10s
118+
echo Test PyAV
119+
./build/scenedetect -i tests/resources/goldeneye.mp4 -b pyav detect-content time --end 10s
120+
echo Test split-video + ffmpeg
121+
./build/scenedetect -i tests/resources/goldeneye.mp4 detect-content time --end 10s split-video

0 commit comments

Comments
 (0)