youtube-dl/youtube_dl/extractor/trutube.py

41 lines
1.3 KiB
Python
Raw Normal View History

from __future__ import unicode_literals
2014-02-22 08:11:57 +00:00
from .common import InfoExtractor
2014-10-29 14:16:10 +00:00
from ..utils import xpath_text
2014-02-22 08:11:57 +00:00
class TruTubeIE(InfoExtractor):
2014-10-29 14:16:10 +00:00
_VALID_URL = r'https?://(?:www\.)?trutube\.tv/(?:video/|nuevo/player/embed\.php\?v=)(?P<id>[0-9]+)'
_TESTS = [{
'url': 'http://trutube.tv/video/14880/Ramses-II-Proven-To-Be-A-Red-Headed-Caucasoid-',
'md5': 'c5b6e301b0a2040b074746cbeaa26ca1',
2014-02-22 08:11:57 +00:00
'info_dict': {
'id': '14880',
'ext': 'flv',
'title': 'Ramses II - Proven To Be A Red Headed Caucasoid',
'thumbnail': 're:^http:.*\.jpg$',
2014-02-22 08:11:57 +00:00
}
2014-10-29 14:16:10 +00:00
}, {
'url': 'https://trutube.tv/nuevo/player/embed.php?v=14880',
'only_matching': True,
}]
2014-02-22 08:11:57 +00:00
def _real_extract(self, url):
2014-10-29 14:16:10 +00:00
video_id = self._match_id(url)
2014-02-22 08:11:57 +00:00
2014-10-29 14:16:10 +00:00
config = self._download_xml(
'https://trutube.tv/nuevo/player/config.php?v=%s' % video_id,
video_id, transform_source=lambda s: s.strip())
2014-10-29 14:16:10 +00:00
# filehd is always 404
video_url = xpath_text(config, './file', 'video URL', fatal=True)
2014-11-03 13:14:18 +00:00
title = xpath_text(config, './title', 'title').strip()
2014-10-29 14:16:10 +00:00
thumbnail = xpath_text(config, './image', ' thumbnail')
2014-02-22 08:11:57 +00:00
return {
'id': video_id,
2014-10-29 14:16:10 +00:00
'url': video_url,
'title': title,
'thumbnail': thumbnail,
}