mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 00:20:47 +00:00 
			
		
		
		
	Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from .common import InfoExtractor
 | 
						|
from ..compat import compat_str
 | 
						|
from ..utils import (
 | 
						|
    int_or_none,
 | 
						|
    try_get,
 | 
						|
    urlencode_postdata,
 | 
						|
)
 | 
						|
 | 
						|
 | 
						|
class BongaCamsIE(InfoExtractor):
 | 
						|
    _VALID_URL = r'https?://(?P<host>(?:[^/]+\.)?bongacams\d*\.com)/(?P<id>[^/?&#]+)'
 | 
						|
    _TESTS = [{
 | 
						|
        'url': 'https://de.bongacams.com/azumi-8',
 | 
						|
        'only_matching': True,
 | 
						|
    }, {
 | 
						|
        'url': 'https://cn.bongacams.com/azumi-8',
 | 
						|
        'only_matching': True,
 | 
						|
    }]
 | 
						|
 | 
						|
    def _real_extract(self, url):
 | 
						|
        mobj = self._match_valid_url(url)
 | 
						|
        host = mobj.group('host')
 | 
						|
        channel_id = mobj.group('id')
 | 
						|
 | 
						|
        amf = self._download_json(
 | 
						|
            'https://%s/tools/amf.php' % host, channel_id,
 | 
						|
            data=urlencode_postdata((
 | 
						|
                ('method', 'getRoomData'),
 | 
						|
                ('args[]', channel_id),
 | 
						|
                ('args[]', 'false'),
 | 
						|
            )), headers={'X-Requested-With': 'XMLHttpRequest'})
 | 
						|
 | 
						|
        server_url = amf['localData']['videoServerUrl']
 | 
						|
 | 
						|
        uploader_id = try_get(
 | 
						|
            amf, lambda x: x['performerData']['username'], compat_str) or channel_id
 | 
						|
        uploader = try_get(
 | 
						|
            amf, lambda x: x['performerData']['displayName'], compat_str)
 | 
						|
        like_count = int_or_none(try_get(
 | 
						|
            amf, lambda x: x['performerData']['loversCount']))
 | 
						|
 | 
						|
        formats = self._extract_m3u8_formats(
 | 
						|
            '%s/hls/stream_%s/playlist.m3u8' % (server_url, uploader_id),
 | 
						|
            channel_id, 'mp4', m3u8_id='hls', live=True)
 | 
						|
        self._sort_formats(formats)
 | 
						|
 | 
						|
        return {
 | 
						|
            'id': channel_id,
 | 
						|
            'title': uploader or uploader_id,
 | 
						|
            'uploader': uploader,
 | 
						|
            'uploader_id': uploader_id,
 | 
						|
            'like_count': like_count,
 | 
						|
            'age_limit': 18,
 | 
						|
            'is_live': True,
 | 
						|
            'formats': formats,
 | 
						|
        }
 |