mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
tests:validate: Better choose tested rendering formats
This commit is contained in:
parent
05ea31304f
commit
e160264c7f
1 changed files with 6 additions and 2 deletions
|
@ -37,8 +37,12 @@ if "win32" in sys.platform:
|
|||
GES_ENCODING_TARGET_COMBINATIONS = [
|
||||
MediaFormatCombination("ogg", "vorbis", "theora"),
|
||||
MediaFormatCombination("webm", "vorbis", "vp8"),
|
||||
MediaFormatCombination("mp4", "mp3", "h264"),
|
||||
MediaFormatCombination("mkv", "vorbis", "h264")]
|
||||
MediaFormatCombination("webm", "opus", "vp8"),
|
||||
MediaFormatCombination("mp4", "aac", "h264"),
|
||||
MediaFormatCombination("mp4", "ac3", "h264"),
|
||||
MediaFormatCombination("mkv", "opus", "h264"),
|
||||
MediaFormatCombination("mkv", "vorbis", "h264")
|
||||
]
|
||||
|
||||
|
||||
def quote_uri(uri):
|
||||
|
|
Loading…
Reference in a new issue