From: Jaime Marquínez Ferrándiz Date: Sun, 21 Dec 2014 13:47:44 +0000 (+0100) Subject: [yahoo] Update extraction process X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=653d14e2f9bee934ca491123f0461a37f770e9e9;hp=85fab7e47b4d4d69a8d105e1d3a07d8a0dd67685;p=youtube-dl [yahoo] Update extraction process Their webpage uses now https://video.media.yql.yahoo.com/v1/video/sapi/streams/ for getting the video info. --- diff --git a/youtube_dl/extractor/yahoo.py b/youtube_dl/extractor/yahoo.py index eed9d4325..f8e7041a0 100644 --- a/youtube_dl/extractor/yahoo.py +++ b/youtube_dl/extractor/yahoo.py @@ -176,17 +176,15 @@ class YahooIE(InfoExtractor): region = self._search_regex( r'\\?"region\\?"\s*:\s*\\?"([^"]+?)\\?"', webpage, 'region', fatal=False, default='US') - query = ('SELECT * FROM yahoo.media.video.streams WHERE id="%s"' - ' AND plrs="86Gj0vCaSzV_Iuf6hNylf2" AND region="%s"' - ' AND protocol="http"' % (video_id, region)) data = compat_urllib_parse.urlencode({ - 'q': query, - 'env': 'prod', - 'format': 'json', + 'protocol': 'http', + 'region': region, }) + query_url = ( + 'https://video.media.yql.yahoo.com/v1/video/sapi/streams/' + '{id}?{data}'.format(id=video_id, data=data)) query_result = self._download_json( - 'http://video.query.yahoo.com/v1/public/yql?' + data, - display_id, 'Downloading video info') + query_url, display_id, 'Downloading video info') info = query_result['query']['results']['mediaObj'][0] meta = info.get('meta')