aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authordyn888 <dyn.8.8.8+github@gmail.com>2016-01-28 15:07:33 +0100
committerdyn888 <dyn.8.8.8+github@gmail.com>2016-01-28 15:07:33 +0100
commitb913348d5fa1130ab1c65576e458407f262df6e1 (patch)
treeb6b2a8e389315da266a37814021a40666e77555f /test
parentb0df5223be5429da0378841dc33eecb532f6898f (diff)
downloadyoutube-dl-b913348d5fa1130ab1c65576e458407f262df6e1.zip
youtube-dl-b913348d5fa1130ab1c65576e458407f262df6e1.tar.gz
youtube-dl-b913348d5fa1130ab1c65576e458407f262df6e1.tar.bz2
Test codec with a dot '.' in name selection.
Diffstat (limited to 'test')
-rw-r--r--test/test_YoutubeDL.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py
index 0caa438..b53cfbe 100644
--- a/test/test_YoutubeDL.py
+++ b/test/test_YoutubeDL.py
@@ -221,6 +221,16 @@ class TestFormatSelection(unittest.TestCase):
downloaded = ydl.downloaded_info_dicts[0]
self.assertEqual(downloaded['format_id'], 'dash-video-low')
+ formats = [
+ {'format_id': 'vid-vcodec-dot', 'ext': 'mp4', 'preference': 1, 'vcodec': 'avc1.123456', 'acodec': 'none', 'url': TEST_URL},
+ ]
+ info_dict = _make_result(formats)
+
+ ydl = YDL({'format': 'bestvideo[vcodec=avc1.123456]'})
+ ydl.process_ie_result(info_dict.copy())
+ downloaded = ydl.downloaded_info_dicts[0]
+ self.assertEqual(downloaded['format_id'], 'vid-vcodec-dot')
+
def test_youtube_format_selection(self):
order = [
'38', '37', '46', '22', '45', '35', '44', '18', '34', '43', '6', '5', '36', '17', '13',