mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[zoomus] Allow for more urls
This commit is contained in:
parent
3f0852e35f
commit
ef6be42014
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
class ZoomUSIE(InfoExtractor):
|
class ZoomUSIE(InfoExtractor):
|
||||||
IE_NAME = 'zoom.us'
|
IE_NAME = 'zoom.us'
|
||||||
_VALID_URL = r'https://zoom.us/recording/play/(?P<id>.*)'
|
_VALID_URL = r'https://(.*).?zoom.us/rec(ording)?/play/(?P<id>.*)'
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'https://zoom.us/recording/play/SILVuCL4bFtRwWTtOCFQQxAsBQsJljFtm9e4Z_bvo-A8B-nzUSYZRNuPl3qW5IGK',
|
'url': 'https://zoom.us/recording/play/SILVuCL4bFtRwWTtOCFQQxAsBQsJljFtm9e4Z_bvo-A8B-nzUSYZRNuPl3qW5IGK',
|
||||||
@ -26,7 +26,6 @@ class ZoomUSIE(InfoExtractor):
|
|||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
display_id = self._match_id(url)
|
display_id = self._match_id(url)
|
||||||
webpage = self._download_webpage(url, display_id)
|
webpage = self._download_webpage(url, display_id)
|
||||||
#cookie = self._get_cookies(url)['_zm_ssid']
|
|
||||||
|
|
||||||
video_url = self._search_regex(r"viewMp4Url: \'(.*)\'", webpage, 'video url')
|
video_url = self._search_regex(r"viewMp4Url: \'(.*)\'", webpage, 'video url')
|
||||||
topic = self._search_regex(r"topic: \"(.*)\",", webpage, 'video url')
|
topic = self._search_regex(r"topic: \"(.*)\",", webpage, 'video url')
|
||||||
|
Loading…
Reference in New Issue
Block a user