2015-05-10 00:30:07 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2020-01-19 19:15:02 +00:00
|
|
|
from ..compat import compat_str
|
2015-05-10 12:29:15 +00:00
|
|
|
from ..utils import (
|
|
|
|
ExtractorError,
|
|
|
|
determine_ext,
|
|
|
|
int_or_none,
|
2020-01-19 19:15:02 +00:00
|
|
|
urljoin,
|
2015-05-10 12:29:15 +00:00
|
|
|
)
|
2015-05-10 00:30:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
class VoiceRepublicIE(InfoExtractor):
|
2015-05-10 12:29:15 +00:00
|
|
|
_VALID_URL = r'https?://voicerepublic\.com/(?:talks|embed)/(?P<id>[0-9a-z-]+)'
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'http://voicerepublic.com/talks/watching-the-watchers-building-a-sousveillance-state',
|
2016-06-10 08:04:28 +00:00
|
|
|
'md5': 'b9174d651323f17783000876347116e3',
|
2015-05-10 00:30:07 +00:00
|
|
|
'info_dict': {
|
|
|
|
'id': '2296',
|
2015-05-10 12:29:15 +00:00
|
|
|
'display_id': 'watching-the-watchers-building-a-sousveillance-state',
|
2015-05-10 00:30:07 +00:00
|
|
|
'ext': 'm4a',
|
|
|
|
'title': 'Watching the Watchers: Building a Sousveillance State',
|
2016-06-10 08:04:28 +00:00
|
|
|
'description': 'Secret surveillance programs have metadata too. The people and companies that operate secret surveillance programs can be surveilled.',
|
2020-01-19 19:15:02 +00:00
|
|
|
'duration': 1556,
|
2015-05-10 12:29:15 +00:00
|
|
|
'view_count': int,
|
2015-05-10 00:30:07 +00:00
|
|
|
}
|
2015-05-10 12:29:15 +00:00
|
|
|
}, {
|
|
|
|
'url': 'http://voicerepublic.com/embed/watching-the-watchers-building-a-sousveillance-state',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
2015-05-10 00:30:07 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
display_id = self._match_id(url)
|
2015-05-10 12:29:15 +00:00
|
|
|
|
2020-01-19 19:15:02 +00:00
|
|
|
webpage = self._download_webpage(url, display_id)
|
2015-05-10 00:30:07 +00:00
|
|
|
|
2015-05-10 12:29:15 +00:00
|
|
|
if '>Queued for processing, please stand by...<' in webpage:
|
|
|
|
raise ExtractorError(
|
|
|
|
'Audio is still queued for processing', expected=True)
|
2015-05-10 03:12:29 +00:00
|
|
|
|
2020-01-19 19:15:02 +00:00
|
|
|
talk = self._parse_json(self._search_regex(
|
|
|
|
r'initialSnapshot\s*=\s*({.+?});',
|
|
|
|
webpage, 'talk'), display_id)['talk']
|
|
|
|
title = talk['title']
|
|
|
|
formats = [{
|
|
|
|
'url': urljoin(url, talk_url),
|
|
|
|
'format_id': format_id,
|
|
|
|
'ext': determine_ext(talk_url) or format_id,
|
|
|
|
'vcodec': 'none',
|
|
|
|
} for format_id, talk_url in talk['media_links'].items()]
|
2015-05-10 03:12:29 +00:00
|
|
|
self._sort_formats(formats)
|
2015-05-10 00:30:07 +00:00
|
|
|
|
|
|
|
return {
|
2020-01-19 19:15:02 +00:00
|
|
|
'id': compat_str(talk.get('id') or display_id),
|
2015-05-10 12:29:15 +00:00
|
|
|
'display_id': display_id,
|
|
|
|
'title': title,
|
2020-01-19 19:15:02 +00:00
|
|
|
'description': talk.get('teaser'),
|
|
|
|
'thumbnail': talk.get('image_url'),
|
|
|
|
'duration': int_or_none(talk.get('archived_duration')),
|
|
|
|
'view_count': int_or_none(talk.get('play_count')),
|
2015-05-10 12:29:15 +00:00
|
|
|
'formats': formats,
|
2015-05-10 00:30:07 +00:00
|
|
|
}
|