mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 00:25:15 +00:00 
			
		
		
		
	[chaturbate] Fix extraction
This commit is contained in:
		@@ -1,5 +1,7 @@
 | 
				
			|||||||
from __future__ import unicode_literals
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import re
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
from ..utils import ExtractorError
 | 
					from ..utils import ExtractorError
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -31,30 +33,32 @@ class ChaturbateIE(InfoExtractor):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        webpage = self._download_webpage(url, video_id)
 | 
					        webpage = self._download_webpage(url, video_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        m3u8_url = self._search_regex(
 | 
					        m3u8_urls = re.findall(
 | 
				
			||||||
            r'src=(["\'])(?P<url>http.+?\.m3u8.*?)\1', webpage,
 | 
					            r'var hlsSource.+? = (["\'])(?P<url>http.+?\.m3u8)', webpage)
 | 
				
			||||||
            'playlist', default=None, group='url')
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if not m3u8_url:
 | 
					        if not m3u8_urls:
 | 
				
			||||||
            error = self._search_regex(
 | 
					            error = self._search_regex(
 | 
				
			||||||
                [r'<span[^>]+class=(["\'])desc_span\1[^>]*>(?P<error>[^<]+)</span>',
 | 
					                [r'<span[^>]+class=(["\'])desc_span\1[^>]*>(?P<error>[^<]+)</span>',
 | 
				
			||||||
                 r'<div[^>]+id=(["\'])defchat\1[^>]*>\s*<p><strong>(?P<error>[^<]+)<'],
 | 
					                 r'<div[^>]+id=(["\'])defchat\1[^>]*>\s*<p><strong>(?P<error>[^<]+)<'],
 | 
				
			||||||
                webpage, 'error', group='error', default=None)
 | 
					                webpage, 'error', group='error', default=None)
 | 
				
			||||||
            if not error:
 | 
					            if not error:
 | 
				
			||||||
                if any(p not in webpage for p in (
 | 
					                if any(p in webpage for p in (
 | 
				
			||||||
                        self._ROOM_OFFLINE, 'offline_tipping', 'tip_offline')):
 | 
					                        self._ROOM_OFFLINE, 'offline_tipping', 'tip_offline')):
 | 
				
			||||||
                    error = self._ROOM_OFFLINE
 | 
					                    error = self._ROOM_OFFLINE
 | 
				
			||||||
            if error:
 | 
					            if error:
 | 
				
			||||||
                raise ExtractorError(error, expected=True)
 | 
					                raise ExtractorError(error, expected=True)
 | 
				
			||||||
            raise ExtractorError('Unable to find stream URL')
 | 
					            raise ExtractorError('Unable to find stream URL')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        formats = self._extract_m3u8_formats(m3u8_url, video_id, ext='mp4')
 | 
					        formats = []
 | 
				
			||||||
 | 
					        for m3u8_url in m3u8_urls:
 | 
				
			||||||
 | 
					            formats.append(self._extract_m3u8_formats(m3u8_url, video_id, ext='mp4')[0])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        self._sort_formats(formats)
 | 
					        self._sort_formats(formats)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return {
 | 
					        return {
 | 
				
			||||||
            'id': video_id,
 | 
					            'id': video_id,
 | 
				
			||||||
            'title': self._live_title(video_id),
 | 
					            'title': self._live_title(video_id),
 | 
				
			||||||
            'thumbnail': 'https://cdn-s.highwebmedia.com/uHK3McUtGCG3SMFcd4ZJsRv8/roomimage/%s.jpg' % video_id,
 | 
					            'thumbnail': 'https://roomimg.stream.highwebmedia.com/ri/%s.jpg' % video_id,
 | 
				
			||||||
            'age_limit': self._rta_search(webpage),
 | 
					            'age_limit': self._rta_search(webpage),
 | 
				
			||||||
            'is_live': True,
 | 
					            'is_live': True,
 | 
				
			||||||
            'formats': formats,
 | 
					            'formats': formats,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user