diff options
| author | ping <lipng.ong@gmail.com> | 2015-05-10 15:27:55 +0800 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-05-10 11:13:14 +0200 | 
| commit | a909e6ad43f9d9661691739a810d7b8853e17175 (patch) | |
| tree | 12b691dce9d93a2edae0a5e50d51d37f6a6a83b1 | |
| parent | 95eb1adda8692a61db639fb21344ad22d1847044 (diff) | |
[dailymotion] Patch upload_date detection.
(closes #5665)
| -rw-r--r-- | youtube_dl/extractor/dailymotion.py | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py index aa595af20..db10b8d00 100644 --- a/youtube_dl/extractor/dailymotion.py +++ b/youtube_dl/extractor/dailymotion.py @@ -52,6 +52,7 @@ class DailymotionIE(DailymotionBaseInfoExtractor):                  'ext': 'mp4',                  'uploader': 'IGN',                  'title': 'Steam Machine Models, Pricing Listed on Steam Store - IGN News', +                'upload_date': '20150306',              }          },          # Vevo video @@ -106,9 +107,9 @@ class DailymotionIE(DailymotionBaseInfoExtractor):          age_limit = self._rta_search(webpage)          video_upload_date = None -        mobj = re.search(r'<div class="[^"]*uploaded_cont[^"]*" title="[^"]*">([0-9]{2})-([0-9]{2})-([0-9]{4})</div>', webpage) +        mobj = re.search(r'<meta property="video:release_date" content="([0-9]{4})-([0-9]{2})-([0-9]{2}).+?"/>', webpage)          if mobj is not None: -            video_upload_date = mobj.group(3) + mobj.group(2) + mobj.group(1) +            video_upload_date = mobj.group(1) + mobj.group(2) + mobj.group(3)          embed_url = 'https://www.dailymotion.com/embed/video/%s' % video_id          embed_request = self._build_request(embed_url) | 
