diff options
author | Sergey M. <dstftw@gmail.com> | 2014-02-06 21:41:31 +0700 |
---|---|---|
committer | Sergey M. <dstftw@gmail.com> | 2014-02-06 21:41:31 +0700 |
commit | 0bf35c5cf501ceda21e0b7c047f10c5ce9eea172 (patch) | |
tree | c51dd994e9badc04abb8c88c6435f9decfdf3d63 /youtube_dl/extractor | |
parent | 95c29381eb8994370ee3924427ecc344ec891f63 (diff) |
[nfb] Add support for onf.ca URLs
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/nfb.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/nfb.py b/youtube_dl/extractor/nfb.py index 722bd8c2e..09de724f9 100644 --- a/youtube_dl/extractor/nfb.py +++ b/youtube_dl/extractor/nfb.py @@ -12,7 +12,7 @@ from ..utils import ( class NFBIE(InfoExtractor): IE_NAME = 'nfb' IE_DESC = 'National Film Board of Canada' - _VALID_URL = r'https?://(?:www\.)?nfb\.ca/film/(?P<id>[\da-z_-]+)' + _VALID_URL = r'https?://(?:www\.)?(nfb|onf)\.ca/film/(?P<id>[\da-z_-]+)' _TEST = { 'url': 'https://www.nfb.ca/film/qallunaat_why_white_people_are_funny', @@ -35,7 +35,7 @@ class NFBIE(InfoExtractor): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') - page = self._download_webpage(url, video_id, 'Downloading film page') + page = self._download_webpage('https://www.nfb.ca/film/%s' % video_id, video_id, 'Downloading film page') uploader_id = self._html_search_regex(r'<a class="director-link" href="/explore-all-directors/([^/]+)/"', page, 'director id', fatal=False) |