diff options
| author | Remita Amine <remitamine@gmail.com> | 2018-05-19 12:19:05 +0100 | 
|---|---|---|
| committer | Remita Amine <remitamine@gmail.com> | 2018-05-19 12:19:05 +0100 | 
| commit | acd620c930a92511c2e2099a4fc82d41825fdf93 (patch) | |
| tree | 561e3b161188a52bdf1c0e453b50b092672aaaf5 | |
| parent | 27694fe7ad77d5f99d7b46fa7395f4ccbb378777 (diff) | |
[teamcoco] improve _VALID_URL regex(#16484)
| -rw-r--r-- | youtube_dl/extractor/teamcoco.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/teamcoco.py b/youtube_dl/extractor/teamcoco.py index f06e5b19a..64235b0f6 100644 --- a/youtube_dl/extractor/teamcoco.py +++ b/youtube_dl/extractor/teamcoco.py @@ -16,7 +16,7 @@ from ..utils import (  class TeamcocoIE(InfoExtractor): -    _VALID_URL = r'https?://teamcoco\.com/video/(?P<id>[^/?#]+)' +    _VALID_URL = r'https?://teamcoco\.com/video/(?P<id>([^/]+/)*[^/?#]+)'      _TESTS = [          {              'url': 'http://teamcoco.com/video/mary-kay-remote', @@ -67,6 +67,9 @@ class TeamcocoIE(InfoExtractor):                  'skip_download': True,  # m3u8 downloads              },              'skip': 'This video is no longer available.', +        }, { +            'url': 'http://teamcoco.com/video/the-conan-audiencey-awards-for-04/25/18', +            'only_matching': True,          }      ] | 
