1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2026-05-18 19:43:28 +00:00

[YoutubeDL] Prevent failure on non-audio-video formats

This commit is contained in:
Andrei Lebedev
2022-08-09 23:13:47 +02:00
parent adb5294177
commit 6425e15ea1
2 changed files with 16 additions and 4 deletions
+12
View File
@@ -454,6 +454,18 @@ class TestFormatSelection(unittest.TestCase):
ydl.process_ie_result(info_dict.copy())
self.assertEqual(ydl.downloaded_info_dicts[0]['format_id'], 'video+audio')
def test_format_selection_non_audio_video(self):
formats = [
{'format_id': 'audio', 'url': TEST_URL, 'ext': 'm4a', 'vcodec': 'none'},
{'format_id': 'chapter', 'ext': 'mhtml', 'acodec': 'none', 'vcodec': 'none', 'url': 'about:invalid'},
{'format_id': 'video', 'url': TEST_URL, 'ext': 'mp4', 'acodec': 'none'},
]
info_dict = _make_result(formats)
ydl = YDL({'format': 'bestvideo+bestaudio'})
ydl.process_ie_result(info_dict.copy())
self.assertEqual(ydl.downloaded_info_dicts[0]['format_id'], 'video+audio')
def test_invalid_format_specs(self):
def assert_syntax_error(format_spec):
ydl = YDL({'format': format_spec})