1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-13 04:47:18 +08:00

[Xiami] Fix song name parsing

This commit is contained in:
bingtaoli 2017-01-13 17:43:11 +08:00
parent 94e08950e3
commit dc79a886bc

View File

@ -16,7 +16,7 @@ class XiamiBaseIE(InfoExtractor):
return webpage return webpage
def _extract_track(self, track, track_id=None): def _extract_track(self, track, track_id=None):
title = track['title'] title = track['songName']
track_url = self._decrypt(track['location']) track_url = self._decrypt(track['location'])
subtitles = {} subtitles = {}