mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-06-06 12:41:53 +02:00
Fix format sorting bug with vp9.2 vcodec (#10884)
Authored by: rakslice
This commit is contained in:
parent
a1b4ac2b8e
commit
8f4ea14680
3 changed files with 35 additions and 1 deletions
|
@ -921,6 +921,11 @@ class TestUtil(unittest.TestCase):
|
|||
'acodec': 'none',
|
||||
'dynamic_range': 'HDR10',
|
||||
})
|
||||
self.assertEqual(parse_codecs('vp09.02.50.10.01.09.18.09.00'), {
|
||||
'vcodec': 'vp09.02.50.10.01.09.18.09.00',
|
||||
'acodec': 'none',
|
||||
'dynamic_range': 'HDR10',
|
||||
})
|
||||
self.assertEqual(parse_codecs('av01.0.12M.10.0.110.09.16.09.0'), {
|
||||
'vcodec': 'av01.0.12M.10.0.110.09.16.09.0',
|
||||
'acodec': 'none',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue