2013-09-04 16:06:50 -04:00
|
|
|
# encoding: utf-8
|
2014-03-21 09:03:18 -04:00
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-09-04 16:06:50 -04:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-12-13 06:24:42 -05:00
|
|
|
from ..compat import (
|
2013-09-04 16:06:50 -04:00
|
|
|
compat_urllib_parse,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class DaumIE(InfoExtractor):
|
2014-09-15 09:25:35 -04:00
|
|
|
_VALID_URL = r'https?://(?:m\.)?tvpot\.daum\.net/(?:v/|.*?clipid=)(?P<id>[^?#&]+)'
|
2014-03-21 09:03:18 -04:00
|
|
|
IE_NAME = 'daum.net'
|
2013-09-04 16:06:50 -04:00
|
|
|
|
2014-09-15 09:25:35 -04:00
|
|
|
_TESTS = [{
|
2014-03-21 09:03:18 -04:00
|
|
|
'url': 'http://tvpot.daum.net/clip/ClipView.do?clipid=52554690',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '52554690',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'DOTA 2GETHER 시즌2 6회 - 2부',
|
|
|
|
'description': 'DOTA 2GETHER 시즌2 6회 - 2부',
|
|
|
|
'upload_date': '20130831',
|
|
|
|
'duration': 3868,
|
2013-09-04 16:06:50 -04:00
|
|
|
},
|
2015-12-22 15:59:49 -05:00
|
|
|
}, {
|
|
|
|
# Test for https://github.com/rg3/youtube-dl/issues/7949
|
|
|
|
'url': 'http://tvpot.daum.net/mypot/View.do?ownerid=M1O35s8HPOo0&clipid=73147290',
|
|
|
|
'md5': 'c92d78bcee4424451f1667f275c1dc97',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '73147290',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': '싸이 - 나팔바지 [유희열의 스케치북] 299회 20151218',
|
|
|
|
'description': '싸이 - 나팔바지',
|
|
|
|
'upload_date': '20151219',
|
|
|
|
'duration': 232,
|
|
|
|
},
|
2014-09-15 09:25:35 -04:00
|
|
|
}, {
|
|
|
|
'url': 'http://tvpot.daum.net/v/vab4dyeDBysyBssyukBUjBz',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'http://tvpot.daum.net/v/07dXWRka62Y%24',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
2013-09-04 16:06:50 -04:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
2014-09-15 09:25:35 -04:00
|
|
|
video_id = mobj.group('id')
|
2013-09-05 04:08:17 -04:00
|
|
|
canonical_url = 'http://tvpot.daum.net/v/%s' % video_id
|
|
|
|
webpage = self._download_webpage(canonical_url, video_id)
|
2015-12-22 15:54:32 -05:00
|
|
|
og_url = self._og_search_url(webpage, default=None) or self._search_regex(
|
|
|
|
r'<link[^>]+rel=(["\'])canonical\1[^>]+href=(["\'])(?P<url>.+?)\2',
|
|
|
|
webpage, 'canonical url', group='url')
|
2013-12-03 08:16:58 -05:00
|
|
|
full_id = self._search_regex(
|
2015-12-22 15:54:32 -05:00
|
|
|
r'tvpot\.daum\.net/v/([^/]+)', og_url, 'full id')
|
2013-09-04 16:06:50 -04:00
|
|
|
query = compat_urllib_parse.urlencode({'vid': full_id})
|
2013-11-26 12:48:52 -05:00
|
|
|
info = self._download_xml(
|
2013-09-04 16:06:50 -04:00
|
|
|
'http://tvpot.daum.net/clip/ClipInfoXml.do?' + query, video_id,
|
2014-03-21 09:03:18 -04:00
|
|
|
'Downloading video info')
|
2013-11-26 12:48:52 -05:00
|
|
|
urls = self._download_xml(
|
2013-09-04 16:06:50 -04:00
|
|
|
'http://videofarm.daum.net/controller/api/open/v1_2/MovieData.apixml?' + query,
|
2014-03-21 09:03:18 -04:00
|
|
|
video_id, 'Downloading video formats info')
|
2013-09-04 16:06:50 -04:00
|
|
|
|
|
|
|
formats = []
|
|
|
|
for format_el in urls.findall('result/output_list/output_list'):
|
|
|
|
profile = format_el.attrib['profile']
|
|
|
|
format_query = compat_urllib_parse.urlencode({
|
|
|
|
'vid': full_id,
|
|
|
|
'profile': profile,
|
|
|
|
})
|
2013-11-26 12:48:52 -05:00
|
|
|
url_doc = self._download_xml(
|
2013-09-04 16:06:50 -04:00
|
|
|
'http://videofarm.daum.net/controller/api/open/v1_2/MovieLocation.apixml?' + format_query,
|
2014-09-15 09:25:35 -04:00
|
|
|
video_id, note='Downloading video data for %s format' % profile)
|
2013-09-04 16:06:50 -04:00
|
|
|
format_url = url_doc.find('result/url').text
|
|
|
|
formats.append({
|
|
|
|
'url': format_url,
|
|
|
|
'format_id': profile,
|
|
|
|
})
|
|
|
|
|
2013-12-03 08:21:06 -05:00
|
|
|
return {
|
2013-09-04 16:06:50 -04:00
|
|
|
'id': video_id,
|
|
|
|
'title': info.find('TITLE').text,
|
|
|
|
'formats': formats,
|
|
|
|
'thumbnail': self._og_search_thumbnail(webpage),
|
2013-09-05 04:08:17 -04:00
|
|
|
'description': info.find('CONTENTS').text,
|
2013-09-04 16:06:50 -04:00
|
|
|
'duration': int(info.find('DURATION').text),
|
|
|
|
'upload_date': info.find('REGDTTM').text[:8],
|
|
|
|
}
|