1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-02-06 18:20:02 +00:00
youtube-dl/youtube_dl/extractor/iqm2.py

83 lines
3.3 KiB
Python
Raw Normal View History

2016-10-06 05:09:53 +00:00
# coding: utf-8
from __future__ import unicode_literals
from ..utils import smuggle_url
2016-10-06 05:09:53 +00:00
import re
from .common import InfoExtractor
from ..compat import compat_urlparse
2016-10-06 05:09:53 +00:00
from .generic import GenericIE
# IQM2 aka Accela is a municipal meeting management platform that
# (among other things) stores livestreamed video from municipal
# meetings. In some cases (e.g. cambridgema.iqm2.com), after a hefty
# (several-hour) processing time, that video is available in easily
# downloadable form from their web portal, but prior to that, the
# video can only be watched in realtime through JWPlayer. Other
# (somervillecityma.iqm2.com) instances don't seem to ever offer a
# downloadable form. This extractor is designed to download the
# realtime video without the download links being available. For more
# info on Accela, see:
2016-10-06 05:09:53 +00:00
# http://www.iqm2.com/About/Accela.aspx
# http://www.accela.com/
# https://github.com/Accela-Inc/leg-man-api-docs
2016-10-06 05:09:53 +00:00
2016-10-08 23:38:28 +00:00
# This processing makes hard to test since there's only a narrow
# window when it matters. After that the extractor finds links to
# the processed video intead.
2016-10-06 05:09:53 +00:00
2016-10-08 23:38:28 +00:00
# No metadata is retrieved, as that would require finding a metadata
# URL and retreiving a 3rd HTTP resource.
2016-10-06 05:29:58 +00:00
2016-10-06 05:09:53 +00:00
# Contributed by John Hawkinson <jhawk@mit.edu>, 6 Oct 2016.
class IQM2IE(InfoExtractor):
2016-10-06 05:29:58 +00:00
# We commonly see both iqm2.com and IQM2.com.
_VALID_URL = r'(?i)https?://(?:\w+\.)?iqm2\.com/Citizens/\w+.aspx\?.*MeetingID=(?P<id>[0-9]+)'
2016-10-10 05:57:56 +00:00
_TESTS = [
{
'url': 'http://somervillecityma.iqm2.com/Citizens/SplitView.aspx?Mode=Video&MeetingID=2308',
2016-10-10 05:57:56 +00:00
'md5': '9ef458ff6c93f8b9323cf79db4ede9cf',
'info_dict': {
'id': '70472_480',
'ext': 'mp4',
'title': 'City of Somerville, Massachusetts',
'uploader': 'somervillecityma.iqm2.com',
}},
{
'url': 'http://cambridgema.iqm2.com/Citizens/SplitView.aspx?Mode=Video&MeetingID=1679#',
'md5': '478ea30eee1966f7be0d8dd623122148',
'info_dict': {
'id': '1563_720',
'ext': 'mp4',
'title': 'Cambridge, MA (2)',
'uploader': 'cambridgema.iqm2.com',
}},
{
2016-10-08 23:17:32 +00:00
'url': 'https://CambridgeMA.IQM2.com/Citizens/VideoMain.aspx?MeetingID=1679',
'only_matching': True,
}]
2016-10-06 05:09:53 +00:00
def _real_extract(self, url):
video_id = self._match_id(url)
2016-10-06 05:09:53 +00:00
webpage = self._download_webpage(url, video_id)
2016-10-08 23:38:28 +00:00
# Simple extractor: take, e.g.
# http://cambridgema.iqm2.com/Citizens/SplitView.aspx?Mode=Video&MeetingID=1679
# and look for
# <div id="VideoPanel" class="LeftTopContent">
# <div id="VideoPanelInner" ... src="/Citizens/VideoScreen.aspx?MediaID=1563&Frame=SplitView">
# and feed the canonicalized src element to the generic extractor
inner_url_rel = self._html_search_regex(
r'<div id="VideoPanelInner".*src="([^"]+)"',
webpage, 'url');
inner_url = compat_urlparse.urljoin(url, inner_url_rel)
2016-10-09 02:46:09 +00:00
# Generic extractor matches this under the "Broaden the
# findall a little bit: JWPlayer JS loader" (line 2372 as of 6
# Oct 2016, dcdb292fddc82ae11f4c0b647815a45c88a6b6d5).
return self.url_result(smuggle_url(inner_url, {'to_generic': True}),
'Generic')