Browse Source

[qqmusic] Allow [mm:ss] timestamps

totalwebcasting
Sergey M․ 9 years ago
parent
commit
95c5e10103
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/qqmusic.py

+ 1
- 1
youtube_dl/extractor/qqmusic.py View File

@ -129,7 +129,7 @@ class QQMusicIE(InfoExtractor):
actual_lrc_lyrics = ''.join(
line + '\n' for line in re.findall(
r'(?m)^(\[[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 = {
'id': mid,


Loading…
Cancel
Save