diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-03-31 20:55:21 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-03-31 20:55:21 +0600 | 
| commit | 2a0c2ca2b8be753f13f9b9dfdcce55560e4953e8 (patch) | |
| tree | 6b992918a61aa5c210d41fb1ba40bf39514d82a9 | |
| parent | c89fbfb385c4989af3bf2eb45e300e01c385cfc7 (diff) | |
[dailymotion] Fix ff cookie and use it for embed page (Closes #5330)
| -rw-r--r-- | youtube_dl/extractor/dailymotion.py | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py index 4f67c3aac..47d58330b 100644 --- a/youtube_dl/extractor/dailymotion.py +++ b/youtube_dl/extractor/dailymotion.py @@ -25,8 +25,7 @@ class DailymotionBaseInfoExtractor(InfoExtractor):      def _build_request(url):          """Build a request with the family filter disabled"""          request = compat_urllib_request.Request(url) -        request.add_header('Cookie', 'family_filter=off') -        request.add_header('Cookie', 'ff=off') +        request.add_header('Cookie', 'family_filter=off; ff=off')          return request @@ -112,8 +111,9 @@ class DailymotionIE(DailymotionBaseInfoExtractor):              video_upload_date = mobj.group(3) + mobj.group(2) + mobj.group(1)          embed_url = 'http://www.dailymotion.com/embed/video/%s' % video_id -        embed_page = self._download_webpage(embed_url, video_id, -                                            'Downloading embed page') +        embed_request = self._build_request(embed_url) +        embed_page = self._download_webpage( +            embed_request, video_id, 'Downloading embed page')          info = self._search_regex(r'var info = ({.*?}),$', embed_page,                                    'video info', flags=re.MULTILINE)          info = json.loads(info) | 
