youtube-dl

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

commit 0a02732b566c080434dc88e68f75a5e3c0239c6a
parent 2b845c408653683f8266665f03b145ecaad76f4d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 31 Dec 2019 22:18:01 +0700

[spankbang] Improve removed video detection (#23423)

Diffstat:
Myoutube_dl/extractor/spankbang.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/spankbang.py b/youtube_dl/extractor/spankbang.py @@ -65,7 +65,7 @@ class SpankBangIE(InfoExtractor): url.replace('/%s/embed' % video_id, '/%s/video' % video_id), video_id, headers={'Cookie': 'country=US'}) - if re.search(r'<[^>]+\bid=["\']video_removed', webpage): + if re.search(r'<[^>]+\b(?:id|class)=["\']video_removed', webpage): raise ExtractorError( 'Video %s is not available' % video_id, expected=True)