mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-06-30 11:02:51 -05:00
[nuevo] Simplify nuevo extractors (Closes #7728)
This commit is contained in:
@ -4,7 +4,7 @@ from .nuevo import NuevoBaseIE
|
||||
|
||||
|
||||
class TruTubeIE(NuevoBaseIE):
|
||||
_VALID_URL = r'https?://(?:www\.)?trutube\.tv/(?:video/|nuevo/player/embed\.php\?v=)(?P<id>[0-9]+)'
|
||||
_VALID_URL = r'https?://(?:www\.)?trutube\.tv/(?:video/|nuevo/player/embed\.php\?v=)(?P<id>\d+)'
|
||||
_TESTS = [{
|
||||
'url': 'http://trutube.tv/video/14880/Ramses-II-Proven-To-Be-A-Red-Headed-Caucasoid-',
|
||||
'md5': 'c5b6e301b0a2040b074746cbeaa26ca1',
|
||||
@ -21,11 +21,6 @@ class TruTubeIE(NuevoBaseIE):
|
||||
|
||||
def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
config_url = 'https://trutube.tv/nuevo/player/config.php?v=%s' % video_id
|
||||
|
||||
info = self._extract_nuevo(config_url, video_id)
|
||||
|
||||
# filehd always 404s
|
||||
info['formats'] = info['formats'][:1]
|
||||
|
||||
return info
|
||||
return self._extract_nuevo(
|
||||
'https://trutube.tv/nuevo/player/config.php?v=%s' % video_id,
|
||||
video_id)
|
||||
|
Reference in New Issue
Block a user