mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-21 20:46:36 -05:00
DailymotionIE: There is not necessarily an underscore in a Dailymotion URL.
This commit is contained in:
parent
7b6d7001d8
commit
63ec7b7479
1 changed files with 1 additions and 1 deletions
|
@ -616,7 +616,7 @@ def _real_extract(self, url):
|
|||
class DailymotionIE(InfoExtractor):
|
||||
"""Information Extractor for Dailymotion"""
|
||||
|
||||
_VALID_URL = r'(?i)(?:https?://)?(?:www\.)?dailymotion\.[a-z]{2,3}/video/([^_/]+)_([^/]+)'
|
||||
_VALID_URL = r'(?i)(?:https?://)?(?:www\.)?dailymotion\.[a-z]{2,3}/video/([^/]+)'
|
||||
IE_NAME = u'dailymotion'
|
||||
|
||||
def __init__(self, downloader=None):
|
||||
|
|
Loading…
Reference in a new issue