diff options
author | Tom-Oliver Heidel <github@tom-oliver.eu> | 2020-11-10 13:34:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 13:34:47 +0100 |
commit | c924a219ea370ed96ad0485a8ad0e995e546aff3 (patch) | |
tree | e72f5ae33ce963dfed9d351c34b08ff0b5c8fa66 | |
parent | da8fb75df5aa3a6bdda2afbe7bec7da905f0618a (diff) | |
parent | 8f109ad4ad6bc734f817ccf3daefb9ed603d7480 (diff) | |
download | hypervideo-pre-c924a219ea370ed96ad0485a8ad0e995e546aff3.tar.lz hypervideo-pre-c924a219ea370ed96ad0485a8ad0e995e546aff3.tar.xz hypervideo-pre-c924a219ea370ed96ad0485a8ad0e995e546aff3.zip |
Merge pull request #153 from Romern/zoom-fix
[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', |