From dc79a886bc15e037d49ca774e7f6961cd0f59df2 Mon Sep 17 00:00:00 2001 From: bingtaoli <1464738780@qq.com> Date: Fri, 13 Jan 2017 17:43:11 +0800 Subject: [PATCH] [Xiami] Fix song name parsing --- youtube_dl/extractor/xiami.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/xiami.py b/youtube_dl/extractor/xiami.py index 86abef257..184c14e09 100644 --- a/youtube_dl/extractor/xiami.py +++ b/youtube_dl/extractor/xiami.py @@ -16,7 +16,7 @@ class XiamiBaseIE(InfoExtractor): return webpage def _extract_track(self, track, track_id=None): - title = track['title'] + title = track['songName'] track_url = self._decrypt(track['location']) subtitles = {}