aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/abcnews.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2019-07-11 23:37:34 +0100
committerRemita Amine <remitamine@gmail.com>2019-07-11 23:37:34 +0100
commit16d3672ad73802043a9cccd1505909949e2ce71f (patch)
treeb07c2a879d14fd510ecb12d2d66674aea610b528 /youtube_dl/extractor/abcnews.py
parent0dd58a523fffd06c126c006722850bab36bd3aa2 (diff)
downloadyoutube-dl-16d3672ad73802043a9cccd1505909949e2ce71f.tar.xz
[espn] fix fivethirtyeight.com extraction
Diffstat (limited to 'youtube_dl/extractor/abcnews.py')
-rw-r--r--youtube_dl/extractor/abcnews.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/abcnews.py b/youtube_dl/extractor/abcnews.py
index cd29aca77..8b407bf9c 100644
--- a/youtube_dl/extractor/abcnews.py
+++ b/youtube_dl/extractor/abcnews.py
@@ -15,10 +15,13 @@ class AbcNewsVideoIE(AMPIE):
IE_NAME = 'abcnews:video'
_VALID_URL = r'''(?x)
https?://
- abcnews\.go\.com/
(?:
- [^/]+/video/(?P<display_id>[0-9a-z-]+)-|
- video/embed\?.*?\bid=
+ abcnews\.go\.com/
+ (?:
+ [^/]+/video/(?P<display_id>[0-9a-z-]+)-|
+ video/embed\?.*?\bid=
+ )|
+ fivethirtyeight\.abcnews\.go\.com/video/embed/\d+/
)
(?P<id>\d+)
'''