diff --git a/youtube_dl/extractor/iqm2.py b/youtube_dl/extractor/iqm2.py index cffd0790a..e025429f7 100644 --- a/youtube_dl/extractor/iqm2.py +++ b/youtube_dl/extractor/iqm2.py @@ -8,15 +8,10 @@ from ..compat import compat_urlparse from .jwplatform import JWPlatformBaseIE from ..utils import js_to_json -# IQM2 aka Accela stores livestreamed video from municipal meetings. - -# No metadata is retrieved, as that would require finding a metadata -# URL and retreiving a 3rd HTTP resource. - # Contributed by John Hawkinson , 6 Oct 2016. class IQM2IE(JWPlatformBaseIE): - + IE_DESC = 'IQM2 (aka Accela) livestreamed video from municipal meetings' # We commonly see both iqm2.com and IQM2.com. _VALID_URL = r'(?i)https?://(?:\w+\.)?iqm2\.com/Citizens/\w+.aspx\?.*MeetingID=(?P[0-9]+)' _TESTS = [ @@ -105,5 +100,8 @@ class IQM2IE(JWPlatformBaseIE): r'(?s)(.*?)', webpage, 'video title', default='video') info_dict['title'] = video_title - + + # No metadata is retrieved, as that would require finding a metadata + # URL and retrieving a 3rd HTTP resource. + return info_dict