Merge remote-tracking branch 'upstream/master'
[youtube-dl] / youtube_dl / extractor / daum.py
1 # encoding: utf-8
2
3 from __future__ import unicode_literals
4
5 import re
6
7 from .common import InfoExtractor
8 from ..compat import compat_urllib_parse
9 from ..utils import (
10     int_or_none,
11     str_to_int,
12     xpath_text,
13 )
14
15
16 class DaumIE(InfoExtractor):
17     _VALID_URL = r'https?://(?:m\.)?tvpot\.daum\.net/v/(?P<id>[^?#&]+)'
18     IE_NAME = 'daum.net'
19
20     _TESTS = [{
21         'url': 'http://tvpot.daum.net/v/vab4dyeDBysyBssyukBUjBz',
22         'info_dict': {
23             'id': 'vab4dyeDBysyBssyukBUjBz',
24             'ext': 'mp4',
25             'title': '마크 헌트 vs 안토니오 실바',
26             'description': 'Mark Hunt vs Antonio Silva',
27             'upload_date': '20131217',
28             'duration': 2117,
29             'view_count': int,
30             'comment_count': int,
31         },
32     }, {
33         'url': 'http://m.tvpot.daum.net/v/65139429',
34         'info_dict': {
35             'id': '65139429',
36             'ext': 'mp4',
37             'title': 'md5:a100d65d09cec246d8aa9bde7de45aed',
38             'description': 'md5:79794514261164ff27e36a21ad229fc5',
39             'upload_date': '20150604',
40             'duration': 154,
41             'view_count': int,
42             'comment_count': int,
43         },
44     }, {
45         'url': 'http://tvpot.daum.net/v/07dXWRka62Y%24',
46         'only_matching': True,
47     }]
48
49     def _real_extract(self, url):
50         video_id = self._match_id(url)
51         query = compat_urllib_parse.urlencode({'vid': video_id})
52         movie_data = self._download_json(
53             'http://videofarm.daum.net/controller/api/closed/v1_2/IntegratedMovieData.json?' + query,
54             video_id, 'Downloading video formats info')
55
56         # For urls like http://m.tvpot.daum.net/v/65139429, where the video_id is really a clipid
57         if not movie_data.get('output_list', {}).get('output_list') and re.match(r'^\d+$', video_id):
58             return self.url_result('http://tvpot.daum.net/clip/ClipView.do?clipid=%s' % video_id)
59
60         info = self._download_xml(
61             'http://tvpot.daum.net/clip/ClipInfoXml.do?' + query, video_id,
62             'Downloading video info')
63
64         formats = []
65         for format_el in movie_data['output_list']['output_list']:
66             profile = format_el['profile']
67             format_query = compat_urllib_parse.urlencode({
68                 'vid': video_id,
69                 'profile': profile,
70             })
71             url_doc = self._download_xml(
72                 'http://videofarm.daum.net/controller/api/open/v1_2/MovieLocation.apixml?' + format_query,
73                 video_id, note='Downloading video data for %s format' % profile)
74             format_url = url_doc.find('result/url').text
75             formats.append({
76                 'url': format_url,
77                 'format_id': profile,
78                 'width': int_or_none(format_el.get('width')),
79                 'height': int_or_none(format_el.get('height')),
80                 'filesize': int_or_none(format_el.get('filesize')),
81             })
82         self._sort_formats(formats)
83
84         return {
85             'id': video_id,
86             'title': info.find('TITLE').text,
87             'formats': formats,
88             'thumbnail': xpath_text(info, 'THUMB_URL'),
89             'description': xpath_text(info, 'CONTENTS'),
90             'duration': int_or_none(xpath_text(info, 'DURATION')),
91             'upload_date': info.find('REGDTTM').text[:8],
92             'view_count': str_to_int(xpath_text(info, 'PLAY_CNT')),
93             'comment_count': str_to_int(xpath_text(info, 'COMMENT_CNT')),
94         }
95
96
97 class DaumClipIE(InfoExtractor):
98     _VALID_URL = r'https?://(?:m\.)?tvpot\.daum\.net/(?:clip/ClipView.(?:do|tv)|mypot/View.do)\?.*?clipid=(?P<id>\d+)'
99     IE_NAME = 'daum.net:clip'
100
101     _TESTS = [{
102         'url': 'http://tvpot.daum.net/clip/ClipView.do?clipid=52554690',
103         'info_dict': {
104             'id': '52554690',
105             'ext': 'mp4',
106             'title': 'DOTA 2GETHER 시즌2 6회 - 2부',
107             'description': 'DOTA 2GETHER 시즌2 6회 - 2부',
108             'upload_date': '20130831',
109             'duration': 3868,
110             'view_count': int,
111         },
112     }, {
113         'url': 'http://m.tvpot.daum.net/clip/ClipView.tv?clipid=54999425',
114         'only_matching': True,
115     }]
116
117     def _real_extract(self, url):
118         video_id = self._match_id(url)
119         clip_info = self._download_json(
120             'http://tvpot.daum.net/mypot/json/GetClipInfo.do?clipid=%s' % video_id,
121             video_id, 'Downloading clip info')['clip_bean']
122
123         return {
124             '_type': 'url_transparent',
125             'id': video_id,
126             'url': 'http://tvpot.daum.net/v/%s' % clip_info['vid'],
127             'title': clip_info['title'],
128             'thumbnail': clip_info.get('thumb_url'),
129             'description': clip_info.get('contents'),
130             'duration': int_or_none(clip_info.get('duration')),
131             'upload_date': clip_info.get('up_date')[:8],
132             'view_count': int_or_none(clip_info.get('play_count')),
133             'ie_key': 'Daum',
134         }