diff options
author | Roman Sebastian Karwacik <roman.karwacik@rwth-aachen.de> | 2020-04-12 23:40:00 +0200 |
---|---|---|
committer | insaneracist <insaneracist@cyberdude.com> | 2020-11-02 16:09:19 -0800 |
commit | ef6be42014694bf67afb38b19e951180a5d0e9fb (patch) | |
tree | c531ede751988fefe9cce87d993dfbf86004a161 | |
parent | 3f0852e35fbe3fbd2f635daadb02425608db5cf2 (diff) | |
download | hypervideo-pre-ef6be42014694bf67afb38b19e951180a5d0e9fb.tar.lz hypervideo-pre-ef6be42014694bf67afb38b19e951180a5d0e9fb.tar.xz hypervideo-pre-ef6be42014694bf67afb38b19e951180a5d0e9fb.zip |
[zoomus] Allow for more urls
-rw-r--r-- | youtube_dlc/extractor/zoomus.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dlc/extractor/zoomus.py b/youtube_dlc/extractor/zoomus.py index 150dbced7..cdcf026e8 100644 --- a/youtube_dlc/extractor/zoomus.py +++ b/youtube_dlc/extractor/zoomus.py @@ -12,7 +12,7 @@ from ..utils import ( class ZoomUSIE(InfoExtractor): 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 = [{ 'url': 'https://zoom.us/recording/play/SILVuCL4bFtRwWTtOCFQQxAsBQsJljFtm9e4Z_bvo-A8B-nzUSYZRNuPl3qW5IGK', @@ -26,7 +26,6 @@ class ZoomUSIE(InfoExtractor): def _real_extract(self, url): display_id = self._match_id(url) webpage = self._download_webpage(url, display_id) - #cookie = self._get_cookies(url)['_zm_ssid'] video_url = self._search_regex(r"viewMp4Url: \'(.*)\'", webpage, 'video url') topic = self._search_regex(r"topic: \"(.*)\",", webpage, 'video url') |