mirror of
https://github.com/soimort/you-get.git
synced 2025-02-03 00:33:58 +03:00
fix typo in re pattern
This commit is contained in:
parent
6fba4bd9ce
commit
6de02c22b6
@ -83,7 +83,7 @@ def video_info(vid,**kwargs):
|
||||
# to decode m3u8 (encoded)
|
||||
m3u8 = get_content(info2["location"],decoded=False)
|
||||
m3u8_list = decode(m3u8)
|
||||
urls = re.findall(r'^[^#^][^\r]*',m3u8_list,re.MULTILINE)
|
||||
urls = re.findall(r'^[^#][^\r]*',m3u8_list,re.MULTILINE)
|
||||
return ext,urls
|
||||
|
||||
def letv_download_by_vid(vid,title, output_dir='.', merge=True, info_only=False,**kwargs):
|
||||
|
Loading…
Reference in New Issue
Block a user