yt-dlc/youtube_dl/extractor/beeg.py

68 lines
2.0 KiB
Python
Raw Normal View History

2014-08-31 09:57:10 +00:00
from __future__ import unicode_literals
from .common import InfoExtractor
2015-10-13 15:04:39 +00:00
from ..utils import (
int_or_none,
parse_iso8601,
)
2014-08-31 09:57:10 +00:00
class BeegIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?beeg\.com/(?P<id>\d+)'
_TEST = {
'url': 'http://beeg.com/5416503',
2015-10-13 15:04:39 +00:00
'md5': '46c384def73b33dbc581262e5ee67cef',
2014-08-31 09:57:10 +00:00
'info_dict': {
'id': '5416503',
'ext': 'mp4',
'title': 'Sultry Striptease',
2015-10-13 15:04:39 +00:00
'description': 'md5:d22219c09da287c14bed3d6c37ce4bc2',
'timestamp': 1391813355,
'upload_date': '20140207',
'duration': 383,
'tags': list,
2014-09-01 21:13:04 +00:00
'age_limit': 18,
2014-08-31 09:57:10 +00:00
}
}
def _real_extract(self, url):
2015-10-13 15:04:39 +00:00
video_id = self._match_id(url)
2014-09-02 13:54:00 +00:00
2015-10-13 15:04:39 +00:00
video = self._download_json(
'http://beeg.com/api/v1/video/%s' % video_id, video_id)
2014-09-02 13:54:00 +00:00
2015-10-13 15:04:39 +00:00
formats = []
for format_id, video_url in video.items():
height = self._search_regex(
r'^(\d+)[pP]$', format_id, 'height', default=None)
if not height:
continue
formats.append({
'url': self._proto_relative_url(video_url.replace('{DATA_MARKERS}', ''), 'http:'),
'format_id': format_id,
'height': int(height),
})
2014-09-02 13:54:00 +00:00
self._sort_formats(formats)
2014-08-31 09:57:10 +00:00
2015-10-13 15:04:39 +00:00
title = video['title']
video_id = video.get('id') or video_id
display_id = video.get('code')
description = video.get('desc')
2014-11-23 19:41:03 +00:00
2015-10-13 15:04:39 +00:00
timestamp = parse_iso8601(video.get('date'), ' ')
duration = int_or_none(video.get('duration'))
2014-08-31 09:57:10 +00:00
2015-10-13 15:04:39 +00:00
tags = [tag.strip() for tag in video['tags'].split(',')] if video.get('tags') else None
2014-08-31 09:57:10 +00:00
return {
'id': video_id,
2015-10-13 15:04:39 +00:00
'display_id': display_id,
2014-08-31 09:57:10 +00:00
'title': title,
'description': description,
2015-10-13 15:04:39 +00:00
'timestamp': timestamp,
'duration': duration,
'tags': tags,
2014-09-02 13:54:00 +00:00
'formats': formats,
2014-09-01 21:13:04 +00:00
'age_limit': 18,
2014-08-31 09:57:10 +00:00
}