2015-06-24 17:12:13 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2016-04-16 19:53:13 +00:00
|
|
|
from ..utils import (
|
|
|
|
determine_ext,
|
|
|
|
int_or_none,
|
|
|
|
)
|
2015-06-24 17:12:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OnionStudiosIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?onionstudios\.com/(?:videos/[^/]+-|embed\?.*\bid=)(?P<id>\d+)(?!-)'
|
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'http://www.onionstudios.com/videos/hannibal-charges-forward-stops-for-a-cocktail-2937',
|
|
|
|
'md5': 'd4851405d31adfadf71cd7a487b765bb',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '2937',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Hannibal charges forward, stops for a cocktail',
|
2016-04-16 19:53:13 +00:00
|
|
|
'description': 'md5:e786add7f280b7f0fe237b64cc73df76',
|
2015-06-24 17:12:13 +00:00
|
|
|
'thumbnail': 're:^https?://.*\.jpg$',
|
|
|
|
'uploader': 'The A.V. Club',
|
|
|
|
'uploader_id': 'TheAVClub',
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
'url': 'http://www.onionstudios.com/embed?id=2855&autoplay=true',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
|
|
|
|
2015-06-24 17:16:33 +00:00
|
|
|
@staticmethod
|
|
|
|
def _extract_url(webpage):
|
|
|
|
mobj = re.search(
|
|
|
|
r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?onionstudios\.com/embed.+?)\1', webpage)
|
|
|
|
if mobj:
|
|
|
|
return mobj.group('url')
|
|
|
|
|
2015-06-24 17:12:13 +00:00
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
|
|
|
|
|
|
|
webpage = self._download_webpage(
|
|
|
|
'http://www.onionstudios.com/embed?id=%s' % video_id, video_id)
|
|
|
|
|
|
|
|
formats = []
|
|
|
|
for src in re.findall(r'<source[^>]+src="([^"]+)"', webpage):
|
2016-04-16 19:53:13 +00:00
|
|
|
ext = determine_ext(src)
|
|
|
|
if ext == 'm3u8':
|
|
|
|
formats.extend(self._extract_m3u8_formats(
|
|
|
|
src, video_id, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False))
|
|
|
|
else:
|
|
|
|
height = int_or_none(self._search_regex(
|
|
|
|
r'/(\d+)\.%s' % ext, src, 'height', default=None))
|
2015-06-24 17:12:13 +00:00
|
|
|
formats.append({
|
2016-04-16 19:53:13 +00:00
|
|
|
'format_id': ext + ('-%sp' % height if height else ''),
|
2015-06-24 17:12:13 +00:00
|
|
|
'url': src,
|
2016-04-16 19:53:13 +00:00
|
|
|
'height': height,
|
|
|
|
'ext': ext,
|
|
|
|
'preference': 1,
|
2015-06-24 17:12:13 +00:00
|
|
|
})
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
|
|
|
title = self._search_regex(
|
2015-07-12 06:53:15 +00:00
|
|
|
r'share_title\s*=\s*(["\'])(?P<title>[^\1]+?)\1',
|
|
|
|
webpage, 'title', group='title')
|
2015-06-24 17:12:13 +00:00
|
|
|
description = self._search_regex(
|
2016-04-24 12:41:17 +00:00
|
|
|
r'share_description\s*=\s*(["\'])(?P<description>[^\'"]+?)\1',
|
2015-07-12 06:53:15 +00:00
|
|
|
webpage, 'description', default=None, group='description')
|
2015-06-24 17:12:13 +00:00
|
|
|
thumbnail = self._search_regex(
|
2015-07-12 06:53:15 +00:00
|
|
|
r'poster\s*=\s*(["\'])(?P<thumbnail>[^\1]+?)\1',
|
|
|
|
webpage, 'thumbnail', default=False, group='thumbnail')
|
2015-06-24 17:12:13 +00:00
|
|
|
|
|
|
|
uploader_id = self._search_regex(
|
2015-07-12 06:53:15 +00:00
|
|
|
r'twitter_handle\s*=\s*(["\'])(?P<uploader_id>[^\1]+?)\1',
|
|
|
|
webpage, 'uploader id', fatal=False, group='uploader_id')
|
2015-06-24 17:12:13 +00:00
|
|
|
uploader = self._search_regex(
|
2015-07-12 06:53:15 +00:00
|
|
|
r'window\.channelName\s*=\s*(["\'])Embedded:(?P<uploader>[^\1]+?)\1',
|
|
|
|
webpage, 'uploader', default=False, group='uploader')
|
2015-06-24 17:12:13 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
|
|
|
'description': description,
|
|
|
|
'thumbnail': thumbnail,
|
|
|
|
'uploader': uploader,
|
|
|
|
'uploader_id': uploader_id,
|
|
|
|
'formats': formats,
|
|
|
|
}
|