mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
49 lines
1.7 KiB
Python
49 lines
1.7 KiB
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
from .adobepass import AdobePass
|
|
from ..utils import (
|
|
update_url_query,
|
|
extract_attributes,
|
|
parse_age_limit,
|
|
smuggle_url,
|
|
)
|
|
|
|
|
|
class FXNetworksIE(AdobePass):
|
|
_VALID_URL = r'https?://(?:www\.)?fxnetworks\.com/video/(?P<id>\d+)'
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
webpage = self._download_webpage(url, video_id)
|
|
video_data = extract_attributes(self._search_regex(
|
|
r'(<a.+?rel="http://link\.theplatform\.com/s/.+?</a>)', webpage, 'video data'))
|
|
player_type = self._search_regex(r'playerType\s*=\s*[\'"]([^\'"]+)', webpage, 'player type', fatal=False)
|
|
release_url = video_data['rel']
|
|
title = video_data['data-title']
|
|
rating = video_data.get('data-rating')
|
|
query = {
|
|
'mbr': 'true',
|
|
}
|
|
if player_type == 'movies':
|
|
query.update({
|
|
'manifest': 'm3u',
|
|
})
|
|
else:
|
|
query.update({
|
|
'switch': 'http',
|
|
})
|
|
if video_data.get('data-req-auth') == '1':
|
|
resource = self._get_mvpd_resource(
|
|
video_data['data-channel'], title,
|
|
video_data.get('data-guid'), rating)
|
|
query['auth'] = self._extract_mvpd_auth(url, video_id, 'fx', resource)
|
|
|
|
return {
|
|
'_type': 'url_transparent',
|
|
'id': video_id,
|
|
'url': smuggle_url(update_url_query(release_url, query), {'force_smil_url': True}),
|
|
'thumbnail': video_data.get('data-large-thumb'),
|
|
'age_limit': parse_age_limit(rating),
|
|
'ie_key': 'ThePlatform',
|
|
}
|