youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit ab009f59ef4a4e2a4842d37212b2e57466d9f22e
parent 0980426559741bb9a8b2ea39b581073cf2738f5a
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 22 Nov 2013 17:17:55 +0100

[toutv] Fix a typo

Diffstat:
Myoutube_dl/extractor/soundcloud.py | 2+-
Myoutube_dl/extractor/toutv.py | 1-
2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/soundcloud.py b/youtube_dl/extractor/soundcloud.py @@ -113,7 +113,7 @@ class SoundcloudIE(InfoExtractor): else: # We fallback to the stream_url in the original info, this # cannot be always used, sometimes it can give an HTTP 404 error - resut['url'] = info['stream_url'] + '?client_id=' + self._CLIENT_ID, + result['url'] = info['stream_url'] + '?client_id=' + self._CLIENT_ID, return result diff --git a/youtube_dl/extractor/toutv.py b/youtube_dl/extractor/toutv.py @@ -39,7 +39,6 @@ class TouTvIE(InfoExtractor): mediaId = self._search_regex( r'"idMedia":\s*"([^"]+)"', webpage, u'media ID') - # TODO test from de streams_url = u'http://release.theplatform.com/content.select?pid=' + mediaId streams_webpage = self._download_webpage( streams_url, video_id, note=u'Downloading stream list')