2019-04-02 23:40:39 +02:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..compat import (
|
|
|
|
compat_parse_qs,
|
|
|
|
compat_urlparse,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class AdobeConnectIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'https?://\w+\.adobeconnect\.com/(?P<id>[\w-]+)'
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
2022-04-04 10:27:35 +02:00
|
|
|
title = self._html_extract_title(webpage)
|
2019-04-02 23:40:39 +02:00
|
|
|
qs = compat_parse_qs(self._search_regex(r"swfUrl\s*=\s*'([^']+)'", webpage, 'swf url').split('?')[1])
|
|
|
|
is_live = qs.get('isLive', ['false'])[0] == 'true'
|
|
|
|
formats = []
|
|
|
|
for con_string in qs['conStrings'][0].split(','):
|
|
|
|
formats.append({
|
|
|
|
'format_id': con_string.split('://')[0],
|
|
|
|
'app': compat_urlparse.quote('?' + con_string.split('?')[1] + 'flvplayerapp/' + qs['appInstance'][0]),
|
|
|
|
'ext': 'flv',
|
|
|
|
'play_path': 'mp4:' + qs['streamName'][0],
|
|
|
|
'rtmp_conn': 'S:' + qs['ticket'][0],
|
|
|
|
'rtmp_live': is_live,
|
|
|
|
'url': con_string,
|
|
|
|
})
|
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
2021-12-15 17:00:46 +01:00
|
|
|
'title': title,
|
2019-04-02 23:40:39 +02:00
|
|
|
'formats': formats,
|
|
|
|
'is_live': is_live,
|
|
|
|
}
|