youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit d4cd06138c70dd50d574c9a5d96bf585648373d5
parent 961c5cbf172da49b26c09f806b0871719578e0e5
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 26 Sep 2015 20:54:41 +0600

[qqmusic] Do not capture braced text from the middle of the string

Diffstat:
Myoutube_dl/extractor/qqmusic.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/qqmusic.py b/youtube_dl/extractor/qqmusic.py @@ -114,7 +114,7 @@ class QQMusicIE(InfoExtractor): actual_lrc_lyrics = ''.join( 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 = { 'id': mid,