Skip to content

Commit 47ead65

Browse files
committed
test/samples: use mpeg2 codec for video samples
In CI, ffmpeg chooses vp9 by default, which cannot be muxed into mpegts.
1 parent ffa3446 commit 47ead65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/samples/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
video = custom_target('video.mkv',
33
output: 'video.mkv',
44
command: [ffmpeg, '-v', 'error', '-y', '-f', 'lavfi', '-i',
5-
'testsrc=duration=2:size=1280x720', '@OUTPUT@'],
5+
'testsrc=duration=2:size=1280x720', '-c:v', 'mpeg2video', '@OUTPUT@'],
66
)
77

88
audio = custom_target('audio.flac',

0 commit comments

Comments
 (0)