From a2043572aa99c7517c84c31fe8a7e2051d27bf09 Mon Sep 17 00:00:00 2001 From: Yen Chi Hsuan Date: Wed, 18 Mar 2015 13:56:02 +0800 Subject: [PATCH] [QQMusic] Implement the guid algorithm --- youtube_dl/extractor/qqmusic.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/youtube_dl/extractor/qqmusic.py b/youtube_dl/extractor/qqmusic.py index 3dc637392..93440b954 100644 --- a/youtube_dl/extractor/qqmusic.py +++ b/youtube_dl/extractor/qqmusic.py @@ -1,13 +1,12 @@ # coding: utf-8 from __future__ import unicode_literals +import random +import time + from .common import InfoExtractor from ..utils import strip_jsonp -# guid is a random number generated in javascript, but seems a fixed number -# also works -guid = '1' - class QQMusicIE(InfoExtractor): _VALID_URL = r'http://y.qq.com/#type=song&mid=(?P[0-9A-Za-z]+)' @@ -23,6 +22,13 @@ class QQMusicIE(InfoExtractor): } }] + # Reference: m_r_GetRUin() in top_player.js + # http://imgcache.gtimg.cn/music/portal_v3/y/top_player.js + @staticmethod + def m_r_get_ruin(): + curMs = int(time.time() * 1000) % 1000 + return int(round(random.random() * 2147483647) * curMs % 1E10) + def _real_extract(self, url): mid = self._match_id(url) @@ -41,6 +47,8 @@ class QQMusicIE(InfoExtractor): singer = self._html_search_regex( r"singer:\s*'([^']+)", detail_info_page, 'singer') + guid = self.m_r_get_ruin() + vkey = self._download_json( 'http://base.music.qq.com/fcgi-bin/fcg_musicexpress.fcg?json=3&guid=%s' % guid, mid, note='Retrieve vkey', errnote='Unable to get vkey', -- 2.30.2