mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	| @@ -1,3 +1,4 @@ | |||||||
|  | # coding: utf-8 | ||||||
| from __future__ import unicode_literals | from __future__ import unicode_literals | ||||||
|  |  | ||||||
| import re | import re | ||||||
| @@ -12,13 +13,28 @@ from ..utils import ( | |||||||
|  |  | ||||||
|  |  | ||||||
| class BongaCamsIE(InfoExtractor): | class BongaCamsIE(InfoExtractor): | ||||||
|     _VALID_URL = r'https?://(?P<host>(?:[^/]+\.)?bongacams\d*\.com)/(?P<id>[^/?&#]+)' |     _VALID_URL = r'https?://(?P<host>(?:[^/]+\.)?bongacams\d*\.(?:com|net))/(?P<id>[^/?&#]+)' | ||||||
|     _TESTS = [{ |     _TESTS = [{ | ||||||
|         'url': 'https://de.bongacams.com/azumi-8', |         'url': 'https://de.bongacams.com/azumi-8', | ||||||
|         'only_matching': True, |         'only_matching': True, | ||||||
|     }, { |     }, { | ||||||
|         'url': 'https://cn.bongacams.com/azumi-8', |         'url': 'https://cn.bongacams.com/azumi-8', | ||||||
|         'only_matching': True, |         'only_matching': True, | ||||||
|  |     }, { | ||||||
|  |         'url': 'https://de.bongacams.net/claireashton', | ||||||
|  |         'info_dict': { | ||||||
|  |             'id': 'claireashton', | ||||||
|  |             'ext': 'mp4', | ||||||
|  |             'title': r're:ClaireAshton \d{4}-\d{2}-\d{2} \d{2}:\d{2}', | ||||||
|  |             'age_limit': 18, | ||||||
|  |             'uploader_id': 'ClaireAshton', | ||||||
|  |             'uploader': 'ClaireAshton', | ||||||
|  |             'like_count': int, | ||||||
|  |             'is_live': True, | ||||||
|  |         }, | ||||||
|  |         'params': { | ||||||
|  |             'skip_download': True, | ||||||
|  |         }, | ||||||
|     }] |     }] | ||||||
|  |  | ||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user