logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 398e1e21d6cbf6eb1e8e7e84de4fad30b7d59613
parent c5b02efe20cff1612104fd731c7f02cbbce4f5f3
Author: Remita Amine <remitamine@gmail.com>
Date:   Fri,  1 Mar 2019 15:34:05 +0100

[espn] extend _VALID_URL regex(closes #20013)

Diffstat:

Myoutube_dl/extractor/espn.py6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/espn.py b/youtube_dl/extractor/espn.py @@ -29,7 +29,8 @@ class ESPNIE(OnceIE): (?: .*?\?.*?\bid=| /_/id/ - ) + )| + [^/]+/video/ ) )| (?:www\.)espnfc\.(?:com|us)/(?:video/)?[^/]+/\d+/video/ @@ -94,6 +95,9 @@ class ESPNIE(OnceIE): }, { 'url': 'http://www.espnfc.com/english-premier-league/23/video/3324163/premier-league-in-90-seconds-golden-tweets', 'only_matching': True, + }, { + 'url': 'http://www.espn.com/espnw/video/26066627/arkansas-gibson-completes-hr-cycle-four-innings', + 'only_matching': True, }] def _real_extract(self, url):