youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 898238e9f82e29ef139ff934f6949ddf574bd4d8
parent ce80cacefd70a2c268de2fb1d5838ce66ac9a683
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 14 Jul 2019 20:30:05 +0700

[youtube] Restrict is_live extraction (closes #21782)

Diffstat:
Myoutube_dl/extractor/youtube.py | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -1896,9 +1896,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor): view_count = int_or_none(video_details.get('viewCount')) if is_live is None: - is_live = bool_or_none(dict_get( - video_details, ('isLive', 'isLiveContent'), - skip_false_values=False)) + is_live = bool_or_none(video_details.get('isLive')) # Check for "rental" videos if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info: