[youtube] Added 'subscriber_count' to extraction

pull/8/head
Joel Potts 4 years ago
parent e8c5d40bc8
commit b84071c0a9

@ -39,6 +39,7 @@ from ..utils import (
mimetype2ext,
orderedSet,
parse_codecs,
parse_count,
parse_duration,
remove_quotes,
remove_start,
@ -2421,6 +2422,14 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
video_duration = parse_duration(self._html_search_meta(
'duration', video_webpage, 'video duration'))
# Get Subscriber Count of channel
subscriber_count = parse_count(self._search_regex(
r'"text":"([\d\.]+\w?) subscribers"',
video_webpage,
'subscriber count',
default=None
))
# annotations
video_annotations = None
if self._downloader.params.get('writeannotations', False):
@ -2558,6 +2567,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
'album': album,
'release_date': release_date,
'release_year': release_year,
'subscriber_count': subscriber_count,
}

Loading…
Cancel
Save