diff options
author | Roman Karwacik <roman.karwacik@rwth-aachen.de> | 2020-11-10 10:39:57 +0100 |
---|---|---|
committer | Roman Karwacik <roman.karwacik@rwth-aachen.de> | 2020-11-10 10:39:57 +0100 |
commit | 8f109ad4ad6bc734f817ccf3daefb9ed603d7480 (patch) | |
tree | e72f5ae33ce963dfed9d351c34b08ff0b5c8fa66 | |
parent | da8fb75df5aa3a6bdda2afbe7bec7da905f0618a (diff) | |
download | hypervideo-pre-8f109ad4ad6bc734f817ccf3daefb9ed603d7480.tar.lz hypervideo-pre-8f109ad4ad6bc734f817ccf3daefb9ed603d7480.tar.xz hypervideo-pre-8f109ad4ad6bc734f817ccf3daefb9ed603d7480.zip |
[zoom] Fix url parsing for url's containing /share/ and dots
-rw-r--r-- | youtube_dlc/extractor/zoom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/zoom.py b/youtube_dlc/extractor/zoom.py index 003e1f901..038a90297 100644 --- a/youtube_dlc/extractor/zoom.py +++ b/youtube_dlc/extractor/zoom.py @@ -13,7 +13,7 @@ from ..utils import ( class ZoomIE(InfoExtractor): IE_NAME = 'zoom' - _VALID_URL = r'https://(?:.*).?zoom.us/rec(?:ording)?/play/(?P<id>[A-Za-z0-9\-_]+)' + _VALID_URL = r'https://(?:.*).?zoom.us/rec(?:ording)?/(play|share)/(?P<id>[A-Za-z0-9\-_.]+)' _TEST = { 'url': 'https://zoom.us/recording/play/SILVuCL4bFtRwWTtOCFQQxAsBQsJljFtm9e4Z_bvo-A8B-nzUSYZRNuPl3qW5IGK', |