mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 05:37:07 -05:00 
			
		
		
		
	[newstube] Capture error message
This commit is contained in:
		@@ -4,6 +4,7 @@ from __future__ import unicode_literals
 | 
			
		||||
import re
 | 
			
		||||
 | 
			
		||||
from .common import InfoExtractor
 | 
			
		||||
from ..utils import ExtractorError
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class NewstubeIE(InfoExtractor):
 | 
			
		||||
@@ -40,6 +41,10 @@ class NewstubeIE(InfoExtractor):
 | 
			
		||||
        def ns(s):
 | 
			
		||||
            return s.replace('/', '/%(ns)s') % {'ns': '{http://app1.newstube.ru/N2SiteWS/player.asmx}'}
 | 
			
		||||
 | 
			
		||||
        error_message = player.find(ns('./ErrorMessage'))
 | 
			
		||||
        if error_message is not None:
 | 
			
		||||
            raise ExtractorError('%s returned error: %s' % (self.IE_NAME, error_message.text), expected=True)
 | 
			
		||||
 | 
			
		||||
        session_id = player.find(ns('./SessionId')).text
 | 
			
		||||
        media_info = player.find(ns('./Medias/MediaInfo'))
 | 
			
		||||
        title = media_info.find(ns('./Name')).text
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user