Skip to content

Commit

Permalink
Switch codec used for test recordings
Browse files Browse the repository at this point in the history
The old one seemed to not be installed by default on Ubuntu 24.04.
  • Loading branch information
mike8699 committed Dec 29, 2024
1 parent 8759aa6 commit 80adb03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/desmume/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def emulator(
video_path = Path(video_recording_directory) / f'{rom_path.name}.mp4'
video_path.parent.mkdir(parents=True, exist_ok=True)
emulator_instance.video = cv2.VideoWriter(
str(video_path), cv2.VideoWriter_fourcc(*'avc1'), 60, (256, 384)
str(video_path), cv2.VideoWriter_fourcc(*'mp4v'), 60, (256, 384)
)
else:
emulator_instance.video = None
Expand Down

0 comments on commit 80adb03

Please sign in to comment.