mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-26 02:14:32 +01:00
acidcow_ver_1.5
This commit is contained in:
parent
1893ea5590
commit
646e6fe600
@ -34,13 +34,20 @@ class acidcowIE(InfoExtractor):
|
||||
)
|
||||
|
||||
title = self._html_search_regex(r'<title>(.+?)</title>', webpage, 'title')
|
||||
'''
|
||||
download_url = self._html_search_regex(
|
||||
|
||||
r'<video src="https://cdn\.acidcow\.com/pics/[0-9]+/video/\S+" .+',
|
||||
|
||||
webpage, "download_url"
|
||||
)
|
||||
'''
|
||||
download_url = self._html_search_regex(
|
||||
|
||||
r'<https://cdn\.acidcow\.com/pics/[0-9]+/video/\S+',
|
||||
|
||||
webpage, "download_url"
|
||||
)
|
||||
return {
|
||||
'id': video_id,
|
||||
'url': download_url,
|
||||
|
Loading…
Reference in New Issue
Block a user