mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-07 10:57:59 +09:00
[vimeo] Better formatting for regexp
This commit is contained in:
parent
c4d55a33fc
commit
bbafbe20c2
@ -16,11 +16,20 @@ from ..utils import (
|
|||||||
unsmuggle_url,
|
unsmuggle_url,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class VimeoIE(InfoExtractor):
|
class VimeoIE(InfoExtractor):
|
||||||
"""Information extractor for vimeo.com."""
|
"""Information extractor for vimeo.com."""
|
||||||
|
|
||||||
# _VALID_URL matches Vimeo URLs
|
# _VALID_URL matches Vimeo URLs
|
||||||
_VALID_URL = r'(?P<proto>https?://)?(?:(?:www|(?P<player>player))\.)?vimeo(?P<pro>pro)?\.com/(?:.*?/)?(?P<direct_link>play_redirect_hls\?clip_id=)?(?:videos?/)?(?P<id>[0-9]+)/?(?:[?].*)?(?:#.*)?$'
|
_VALID_URL = r'''(?x)
|
||||||
|
(?P<proto>https?://)?
|
||||||
|
(?:(?:www|(?P<player>player))\.)?
|
||||||
|
vimeo(?P<pro>pro)?\.com/
|
||||||
|
(?:.*?/)?
|
||||||
|
(?P<direct_link>play_redirect_hls\?clip_id=)?
|
||||||
|
(?:videos?/)?
|
||||||
|
(?P<id>[0-9]+)
|
||||||
|
/?(?:[?].*)?(?:[#].*)?$'''
|
||||||
_NETRC_MACHINE = 'vimeo'
|
_NETRC_MACHINE = 'vimeo'
|
||||||
IE_NAME = u'vimeo'
|
IE_NAME = u'vimeo'
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
|
Loading…
Reference in New Issue
Block a user