1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-15 01:29:33 +00:00

[youtube] Fix extraction with --youtube-skip-dash-manifest enabled (closes #14037)

This commit is contained in:
Sergey M․ 2017-08-27 05:59:08 +07:00
parent f031b76065
commit 1c9c8de29e
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -1621,7 +1621,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
self.to_screen('Downloading just video %s because of --no-playlist' % video_id)
if view_count is None:
view_count = extract_view_count(get_video_info)
view_count = extract_view_count(video_info)
# Check for "rental" videos
if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info: