From 976b03c56bddf20c978820474e307457523f4c05 Mon Sep 17 00:00:00 2001 From: chaoskagami Date: Sun, 14 Jun 2015 00:18:40 -0400 Subject: [PATCH] Quality note for niconico - at least notify whether you'll get low or src --- youtube_dl/extractor/niconico.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/youtube_dl/extractor/niconico.py b/youtube_dl/extractor/niconico.py index 3cecebf95..e10348004 100644 --- a/youtube_dl/extractor/niconico.py +++ b/youtube_dl/extractor/niconico.py @@ -184,6 +184,11 @@ class NiconicoIE(InfoExtractor): extension = determine_ext(video_real_url) video_format = extension.upper() + if video_real_url.endswith('low'): + format_note = 'low' + else: + format_note = 'src' + thumbnail = ( xpath_text(video_info, './/thumbnail_url') or self._html_search_meta('image', webpage, 'thumbnail', default=None) or @@ -242,6 +247,7 @@ class NiconicoIE(InfoExtractor): 'title': title, 'ext': extension, 'format': video_format, + 'format_note' : format_note, 'thumbnail': thumbnail, 'description': description, 'uploader': uploader,