Browse Source

[dumpert] Disable SSL (Closes #7504)

totalwebcasting
Sergey M․ 9 years ago
parent
commit
dc0279532a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/dumpert.py

+ 1
- 1
youtube_dl/extractor/dumpert.py View File

@ -28,7 +28,7 @@ class DumpertIE(InfoExtractor):
def _real_extract(self, url):
video_id = self._match_id(url)
url = 'https://www.dumpert.nl/mediabase/' + video_id
url = 'http://www.dumpert.nl/mediabase/' + video_id
req = compat_urllib_request.Request(url)
req.add_header('Cookie', 'nsfw=1; cpc=10')
webpage = self._download_webpage(req, video_id)


Loading…
Cancel
Save