Skip to content

Commit

Permalink
Merge pull request ytdl-org#153 from Romern/zoom-fix
Browse files Browse the repository at this point in the history
[zoom] Fix url parsing for url's containing /share/ and dots
  • Loading branch information
blackjack4494 authored Nov 10, 2020
2 parents da8fb75 + 8f109ad commit c924a21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dlc/extractor/zoom.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

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',
Expand Down

0 comments on commit c924a21

Please sign in to comment.