diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-06-06 14:55:19 +0200 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-06-06 14:55:19 +0200 | 
| commit | 087ca2cb07be342bed18e4d0630a4089249b931f (patch) | |
| tree | f6d0bde6c17159dcb0731a29161de5d18423185f /youtube_dl/extractor/naver.py | |
| parent | 70e322695db9d67ba3ab35bf660d92be5e7e55f1 (diff) | |
[naver] Add rtmp formats (fixes #3054)
Diffstat (limited to 'youtube_dl/extractor/naver.py')
| -rw-r--r-- | youtube_dl/extractor/naver.py | 13 | 
1 files changed, 9 insertions, 4 deletions
| diff --git a/youtube_dl/extractor/naver.py b/youtube_dl/extractor/naver.py index 4cab30631..160b3f00f 100644 --- a/youtube_dl/extractor/naver.py +++ b/youtube_dl/extractor/naver.py @@ -47,14 +47,19 @@ class NaverIE(InfoExtractor):          formats = []          for format_el in urls.findall('EncodingOptions/EncodingOption'):              domain = format_el.find('Domain').text -            if domain.startswith('rtmp'): -                continue -            formats.append({ +            f = {                  'url': domain + format_el.find('uri').text,                  'ext': 'mp4',                  'width': int(format_el.find('width').text),                  'height': int(format_el.find('height').text), -            }) +            } +            if domain.startswith('rtmp'): +                f.update({ +                    'ext': 'flv', +                    'rtmp_protocol': '1', # rtmpt +                }) +            formats.append(f) +        self._sort_formats(formats)          return {              'id': video_id, | 
