X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Ftrutube.py;h=d55e0c563998bb1f4c38b973519ec420b6b41a8c;hb=05b651e3a58081492eb35d896c80dd1bdb87081c;hp=d7ec2ec26ab557de62b8fc4e49dae248b2000702;hpb=d570746e45cff3c0f89654bf748e44a5da75a924;p=youtube-dl diff --git a/youtube_dl/extractor/trutube.py b/youtube_dl/extractor/trutube.py index d7ec2ec26..d55e0c563 100644 --- a/youtube_dl/extractor/trutube.py +++ b/youtube_dl/extractor/trutube.py @@ -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[0-9]+)' + _VALID_URL = r'https?://(?:www\.)?trutube\.tv/(?:video/|nuevo/player/embed\.php\?v=)(?P\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)