1
1
mirror of https://github.com/ytdl-org/youtube-dl synced 2024-07-10 08:11:34 +02:00

[nfb] Fix uploader extraction

This commit is contained in:
Sergey M․ 2016-05-17 23:46:47 +06:00
parent 055f0d3d06
commit 15cda1ef77
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

View File

@ -37,8 +37,7 @@ class NFBIE(InfoExtractor):
uploader_id = self._html_search_regex(r'<a class="director-link" href="/explore-all-directors/([^/]+)/"',
page, 'director id', fatal=False)
uploader = self._html_search_regex(r'<em class="director-name" itemprop="name">([^<]+)</em>',
page, 'director name', fatal=False)
uploader = self._og_search_property('video:director', page, 'director name')
request = sanitized_Request(
'https://www.nfb.ca/film/%s/player_config' % video_id,