From 6c08b2c570730f2cfdd53b698944b97cf25de02e Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Fri, 20 Mar 2020 09:05:52 -0300 Subject: [PATCH] validate: Scale down even more to speed up encoding in VP9 From 3min to 50secs to execute here. Part-of: --- validate/launcher/apps/gstvalidate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validate/launcher/apps/gstvalidate.py b/validate/launcher/apps/gstvalidate.py index f8f0513bb9..d9cf6dbb05 100644 --- a/validate/launcher/apps/gstvalidate.py +++ b/validate/launcher/apps/gstvalidate.py @@ -1284,8 +1284,8 @@ not been tested and explicitly activated if you set use --wanted-tests ALL""") self.add_encoding_formats([ MediaFormatCombination("ogg", "vorbis", "theora"), MediaFormatCombination("webm", "vorbis", "vp8"), - MediaFormatCombination( - "webm", "vorbis", "vp9", video_restriction="video/x-raw,width=320,height=240"), + MediaFormatCombination("webm", "vorbis", "vp9", + video_restriction="video/x-raw,width=160,height=120"), MediaFormatCombination("mp4", "mp3", "h264"), MediaFormatCombination("mkv", "vorbis", "h264"), ])