[youtube] Extract the 'sts' parameter from the webpage (fixes #3327)

This commit is contained in:
Jaime Marquínez Ferrándiz 2014-07-23 12:16:26 +02:00
parent d799b47b82
commit c084c93402
1 changed files with 2 additions and 1 deletions

View File

@ -611,7 +611,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
data = compat_urllib_parse.urlencode({
'video_id': video_id,
'eurl': 'https://youtube.googleapis.com/v/' + video_id,
'sts':'16268',
'sts': self._search_regex(
r'"sts"\s*:\s*(\d+)', video_webpage, 'sts'),
})
video_info_url = proto + '://www.youtube.com/get_video_info?' + data
video_info_webpage = self._download_webpage(video_info_url, video_id,