summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-05 10:08:17 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-05 10:08:17 +0200
commit9363169b67a7837bdd157939a896bd38b350f634 (patch)
tree793675bb4e5e7efd58b497615df60ff6a2a4ec00
parent085bea451346956aaa0d981fe5b413aaec49e63f (diff)
downloadyoutube-dl-9363169b67a7837bdd157939a896bd38b350f634.tar.gz
youtube-dl-9363169b67a7837bdd157939a896bd38b350f634.tar.xz
youtube-dl-9363169b67a7837bdd157939a896bd38b350f634.zip
[daum] Get the video page from a canonical url to extract the full id (fixes #1373) and extract description.
-rw-r--r--youtube_dl/extractor/daum.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/daum.py b/youtube_dl/extractor/daum.py
index 9b4566999..a804e83bd 100644
--- a/youtube_dl/extractor/daum.py
+++ b/youtube_dl/extractor/daum.py
@@ -18,6 +18,7 @@ class DaumIE(InfoExtractor):
         u'file': u'52554690.mp4',
         u'info_dict': {
             u'title': u'DOTA 2GETHER 시즌2 6회 - 2부',
+            u'description': u'DOTA 2GETHER 시즌2 6회 - 2부',
             u'upload_date': u'20130831',
             u'duration': 3868,
         },
@@ -26,7 +27,8 @@ class DaumIE(InfoExtractor):
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)
         video_id = mobj.group(1)
-        webpage = self._download_webpage(url, video_id)
+        canonical_url = 'http://tvpot.daum.net/v/%s' % video_id
+        webpage = self._download_webpage(canonical_url, video_id)
         full_id = self._search_regex(r'<link rel="video_src" href=".+?vid=(.+?)"',
             webpage, u'full id')
         query = compat_urllib_parse.urlencode({'vid': full_id})
@@ -63,6 +65,7 @@ class DaumIE(InfoExtractor):
             'title': info.find('TITLE').text,
             'formats': formats,
             'thumbnail': self._og_search_thumbnail(webpage),
+            'description': info.find('CONTENTS').text,
             'duration': int(info.find('DURATION').text),
             'upload_date': info.find('REGDTTM').text[:8],
         }