mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[qqmusic] Unescape '\\n' in description (#5705)
This commit is contained in:
parent
ecee572411
commit
b813d8caf1
@ -26,7 +26,7 @@ class QQMusicIE(InfoExtractor):
|
||||
'title': '可惜没如果',
|
||||
'upload_date': '20141227',
|
||||
'creator': '林俊杰',
|
||||
'description': 'md5:4348ff1dd24036906baa7b6f973f8d30',
|
||||
'description': 'md5:d327722d0361576fde558f1ac68a7065',
|
||||
}
|
||||
}]
|
||||
|
||||
@ -60,6 +60,8 @@ def _real_extract(self, url):
|
||||
lrc_content = self._html_search_regex(
|
||||
r'<div class="content" id="lrc_content"[^<>]*>([^<>]+)</div>',
|
||||
detail_info_page, 'LRC lyrics', default=None)
|
||||
if lrc_content:
|
||||
lrc_content = lrc_content.replace('\\n', '\n')
|
||||
|
||||
guid = self.m_r_get_ruin()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user