mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 21:27:07 -05:00 
			
		
		
		
	[spankbang] Detect unavailable videos (closes #14644)
This commit is contained in:
		@@ -3,6 +3,7 @@ from __future__ import unicode_literals
 | 
			
		||||
import re
 | 
			
		||||
 | 
			
		||||
from .common import InfoExtractor
 | 
			
		||||
from ..utils import ExtractorError
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class SpankBangIE(InfoExtractor):
 | 
			
		||||
@@ -33,6 +34,10 @@ class SpankBangIE(InfoExtractor):
 | 
			
		||||
        video_id = self._match_id(url)
 | 
			
		||||
        webpage = self._download_webpage(url, video_id)
 | 
			
		||||
 | 
			
		||||
        if re.search(r'<[^>]+\bid=["\']video_removed', webpage):
 | 
			
		||||
            raise ExtractorError(
 | 
			
		||||
                'Video %s is not available' % video_id, expected=True)
 | 
			
		||||
 | 
			
		||||
        stream_key = self._html_search_regex(
 | 
			
		||||
            r'''var\s+stream_key\s*=\s*['"](.+?)['"]''',
 | 
			
		||||
            webpage, 'stream key')
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user