diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2012-12-07 00:40:13 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2012-12-07 00:40:13 +0100 |
commit | b4cd069d5e3b8dcacd201efd7d31e9fdd99452ea (patch) | |
tree | 56e1e26447afe7b2b26103561854bd63cc0f5096 | |
parent | 0f8d03f81cb20ba0f2a4358b8111146b589d1c5d (diff) |
Better error reporting for SoundCloud IE
-rw-r--r-- | youtube_dl/InfoExtractors.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 1857360d4..334eb59d8 100644 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -2825,9 +2825,10 @@ class SoundcloudIE(InfoExtractor): self.report_webpage('%s/%s' % (uploader, slug_title)) - request = compat_urllib_request.Request('http://soundcloud.com/%s/%s' % (uploader, slug_title)) + url = 'https://soundcloud.com/%s/%s' % (uploader, slug_title) + request = compat_urllib_request.Request(url) try: - webpage_bytes = compat_urllib_request.urlopen(request).read() + urlo = compat_urllib_request.urlopen(request).read() webpage = webpage_bytes.decode('utf-8') except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err: self._downloader.trouble(u'ERROR: unable to download video webpage: %s' % compat_str(err)) @@ -2840,6 +2841,9 @@ class SoundcloudIE(InfoExtractor): if mobj: video_id = mobj.group(1) stream_token = mobj.group(2) + else: + self._downloader.trouble(u'ERROR: unable to find video ID in Soundcloud file') + return # extract unsimplified title mobj = re.search('"title":"(.*?)",', webpage) |