diff options
| author | sprhawk <465558+sprhawk@users.noreply.github.com> | 2017-12-26 22:27:26 +0800 | 
|---|---|---|
| committer | sprhawk <465558+sprhawk@users.noreply.github.com> | 2017-12-26 22:27:26 +0800 | 
| commit | c33de004e13da11f1ae3cad7310b36500cfb9d28 (patch) | |
| tree | c742e448af6c126eca4b259c85f83177aec54847 /youtube_dl/extractor/sevenplus.py | |
| parent | 42a1012c7767306626c5358a18ad3e86417bd7b7 (diff) | |
| parent | db145ee54a57f5ccc89639de8c589eb111a91b19 (diff) | |
Merge branch 'master' of github.com:rg3/youtube-dl into weibo
Diffstat (limited to 'youtube_dl/extractor/sevenplus.py')
| -rw-r--r-- | youtube_dl/extractor/sevenplus.py | 67 | 
1 files changed, 67 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/sevenplus.py b/youtube_dl/extractor/sevenplus.py new file mode 100644 index 000000000..9792f820a --- /dev/null +++ b/youtube_dl/extractor/sevenplus.py @@ -0,0 +1,67 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import re + +from .brightcove import BrightcoveNewIE +from ..utils import update_url_query + + +class SevenPlusIE(BrightcoveNewIE): +    IE_NAME = '7plus' +    _VALID_URL = r'https?://(?:www\.)?7plus\.com\.au/(?P<path>[^?]+\?.*?\bepisode-id=(?P<id>[^&#]+))' +    _TESTS = [{ +        'url': 'https://7plus.com.au/BEAT?episode-id=BEAT-001', +        'info_dict': { +            'id': 'BEAT-001', +            'ext': 'mp4', +            'title': 'S1 E1 - Help / Lucy In The Sky With Diamonds', +            'description': 'md5:37718bea20a8eedaca7f7361af566131', +            'uploader_id': '5303576322001', +            'upload_date': '20171031', +            'timestamp': 1509440068, +        }, +        'params': { +            'format': 'bestvideo', +            'skip_download': True, +        } +    }, { +        'url': 'https://7plus.com.au/UUUU?episode-id=AUMS43-001', +        'only_matching': True, +    }] + +    def _real_extract(self, url): +        path, episode_id = re.match(self._VALID_URL, url).groups() + +        media = self._download_json( +            'https://videoservice.swm.digital/playback', episode_id, query={ +                'appId': '7plus', +                'deviceType': 'web', +                'platformType': 'web', +                'accountId': 5303576322001, +                'referenceId': 'ref:' + episode_id, +                'deliveryId': 'csai', +                'videoType': 'vod', +            })['media'] + +        for source in media.get('sources', {}): +            src = source.get('src') +            if not src: +                continue +            source['src'] = update_url_query(src, {'rule': ''}) + +        info = self._parse_brightcove_metadata(media, episode_id) + +        content = self._download_json( +            'https://component-cdn.swm.digital/content/' + path, +            episode_id, headers={ +                'market-id': 4, +            }, fatal=False) or {} +        for item in content.get('items', {}): +            if item.get('componentData', {}).get('componentType') == 'infoPanel': +                for src_key, dst_key in [('title', 'title'), ('shortSynopsis', 'description')]: +                    value = item.get(src_key) +                    if value: +                        info[dst_key] = value + +        return info | 
