diff options
author | Andre Walker <andre.walker@booking.com> | 2017-01-28 16:19:38 +0100 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2017-01-29 02:29:39 +0700 |
commit | 56fc078da84a7f26d8290b2b425cc2da66a5975a (patch) | |
tree | 0317a296eac53be50d0a12380f6acecc20667490 /youtube_dl/extractor | |
parent | 0842b8241d9f8984dd70266b59aa68241259401f (diff) |
[npo] Update subtitles url
NPO websites changed the domain they used for subtitles, from
e.omroep.nl to tt888.omroep.nl.
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/npo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/npo.py b/youtube_dl/extractor/npo.py index c91f58461..962437145 100644 --- a/youtube_dl/extractor/npo.py +++ b/youtube_dl/extractor/npo.py @@ -241,7 +241,7 @@ class NPOIE(NPOBaseIE): if metadata.get('tt888') == 'ja': subtitles['nl'] = [{ 'ext': 'vtt', - 'url': 'http://e.omroep.nl/tt888/%s' % video_id, + 'url': 'http://tt888.omroep.nl/tt888/%s' % video_id, }] return { |