diff options
Diffstat (limited to 'youtube_dl/extractor/espn.py')
| -rw-r--r-- | youtube_dl/extractor/espn.py | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/espn.py b/youtube_dl/extractor/espn.py index 127c69b2e..8cc9bd165 100644 --- 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):  | 
