mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-17 13:52:36 +00:00
[qqmusic] Do not capture braced text from the middle of the string
This commit is contained in:
parent
961c5cbf17
commit
d4cd06138c
|
@ -114,7 +114,7 @@ def _real_extract(self, url):
|
||||||
|
|
||||||
actual_lrc_lyrics = ''.join(
|
actual_lrc_lyrics = ''.join(
|
||||||
line + '\n' for line in re.findall(
|
line + '\n' for line in re.findall(
|
||||||
r'(\[[0-9]{2}:[0-9]{2}\.[0-9]{2,}\][^\n]*|\[[^\]]*\])', lrc_content))
|
r'(?m)^(\[[0-9]{2}:[0-9]{2}\.[0-9]{2,}\][^\n]*|\[[^\]]*\])', lrc_content))
|
||||||
|
|
||||||
info_dict = {
|
info_dict = {
|
||||||
'id': mid,
|
'id': mid,
|
||||||
|
|
Loading…
Reference in a new issue