mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-01-10 05:20:09 +09:00
Compare commits
No commits in common. "c0071885987b3737d2c586133007c61ab513a477" and "6f2eaaf73daef3ac0995cd7b51c677b003c04218" have entirely different histories.
c007188598
...
6f2eaaf73d
@ -399,6 +399,7 @@ from .fujitv import FujiTVFODPlus7IE
|
|||||||
from .funimation import FunimationIE
|
from .funimation import FunimationIE
|
||||||
from .funk import FunkIE
|
from .funk import FunkIE
|
||||||
from .fusion import FusionIE
|
from .fusion import FusionIE
|
||||||
|
from .fxnetworks import FXNetworksIE
|
||||||
from .gaia import GaiaIE
|
from .gaia import GaiaIE
|
||||||
from .gameinformer import GameInformerIE
|
from .gameinformer import GameInformerIE
|
||||||
from .gamespot import GameSpotIE
|
from .gamespot import GameSpotIE
|
||||||
|
77
youtube_dl/extractor/fxnetworks.py
Normal file
77
youtube_dl/extractor/fxnetworks.py
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
# coding: utf-8
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from .adobepass import AdobePassIE
|
||||||
|
from ..utils import (
|
||||||
|
extract_attributes,
|
||||||
|
int_or_none,
|
||||||
|
parse_age_limit,
|
||||||
|
smuggle_url,
|
||||||
|
update_url_query,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class FXNetworksIE(AdobePassIE):
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?(?:fxnetworks|simpsonsworld)\.com/video/(?P<id>\d+)'
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'http://www.fxnetworks.com/video/1032565827847',
|
||||||
|
'md5': '8d99b97b4aa7a202f55b6ed47ea7e703',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'dRzwHC_MMqIv',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'First Look: Better Things - Season 2',
|
||||||
|
'description': 'Because real life is like a fart. Watch this FIRST LOOK to see what inspired the new season of Better Things.',
|
||||||
|
'age_limit': 14,
|
||||||
|
'uploader': 'NEWA-FNG-FX',
|
||||||
|
'upload_date': '20170825',
|
||||||
|
'timestamp': 1503686274,
|
||||||
|
'episode_number': 0,
|
||||||
|
'season_number': 2,
|
||||||
|
'series': 'Better Things',
|
||||||
|
},
|
||||||
|
'add_ie': ['ThePlatform'],
|
||||||
|
}, {
|
||||||
|
'url': 'http://www.simpsonsworld.com/video/716094019682',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
video_id = self._match_id(url)
|
||||||
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
if 'The content you are trying to access is not available in your region.' in webpage:
|
||||||
|
self.raise_geo_restricted()
|
||||||
|
video_data = extract_attributes(self._search_regex(
|
||||||
|
r'(<a.+?rel="https?://link\.theplatform\.com/s/.+?</a>)', webpage, 'video data'))
|
||||||
|
player_type = self._search_regex(r'playerType\s*=\s*[\'"]([^\'"]+)', webpage, 'player type', default=None)
|
||||||
|
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,
|
||||||
|
'title': title,
|
||||||
|
'url': smuggle_url(update_url_query(release_url, query), {'force_smil_url': True}),
|
||||||
|
'series': video_data.get('data-show-title'),
|
||||||
|
'episode_number': int_or_none(video_data.get('data-episode')),
|
||||||
|
'season_number': int_or_none(video_data.get('data-season')),
|
||||||
|
'thumbnail': video_data.get('data-large-thumb'),
|
||||||
|
'age_limit': parse_age_limit(rating),
|
||||||
|
'ie_key': 'ThePlatform',
|
||||||
|
}
|
@ -38,17 +38,13 @@ class GoIE(AdobePassIE):
|
|||||||
'disneynow': {
|
'disneynow': {
|
||||||
'brand': '011',
|
'brand': '011',
|
||||||
'resource_id': 'Disney',
|
'resource_id': 'Disney',
|
||||||
},
|
}
|
||||||
'fxnow.fxnetworks': {
|
|
||||||
'brand': '025',
|
|
||||||
'requestor_id': 'dtci',
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
_VALID_URL = r'''(?x)
|
_VALID_URL = r'''(?x)
|
||||||
https?://
|
https?://
|
||||||
(?:
|
(?:
|
||||||
(?:(?P<sub_domain>%s)\.)?go|
|
(?:(?P<sub_domain>%s)\.)?go|
|
||||||
(?P<sub_domain_2>abc|freeform|disneynow|fxnow\.fxnetworks)
|
(?P<sub_domain_2>abc|freeform|disneynow)
|
||||||
)\.com/
|
)\.com/
|
||||||
(?:
|
(?:
|
||||||
(?:[^/]+/)*(?P<id>[Vv][Dd][Kk][Aa]\w+)|
|
(?:[^/]+/)*(?P<id>[Vv][Dd][Kk][Aa]\w+)|
|
||||||
@ -103,19 +99,6 @@ class GoIE(AdobePassIE):
|
|||||||
# m3u8 download
|
# m3u8 download
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
}, {
|
|
||||||
'url': 'https://fxnow.fxnetworks.com/shows/better-things/video/vdka12782841',
|
|
||||||
'info_dict': {
|
|
||||||
'id': 'VDKA12782841',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'title': 'First Look: Better Things - Season 2',
|
|
||||||
'description': 'md5:fa73584a95761c605d9d54904e35b407',
|
|
||||||
},
|
|
||||||
'params': {
|
|
||||||
'geo_bypass_ip_block': '3.244.239.0/24',
|
|
||||||
# m3u8 download
|
|
||||||
'skip_download': True,
|
|
||||||
},
|
|
||||||
}, {
|
}, {
|
||||||
'url': 'http://abc.go.com/shows/the-catch/episode-guide/season-01/10-the-wedding',
|
'url': 'http://abc.go.com/shows/the-catch/episode-guide/season-01/10-the-wedding',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
@ -200,7 +200,7 @@ class ToggleIE(InfoExtractor):
|
|||||||
|
|
||||||
class MeWatchIE(InfoExtractor):
|
class MeWatchIE(InfoExtractor):
|
||||||
IE_NAME = 'mewatch'
|
IE_NAME = 'mewatch'
|
||||||
_VALID_URL = r'https?://(?:(?:www|live)\.)?mewatch\.sg/watch/[^/?#&]+-(?P<id>[0-9]+)'
|
_VALID_URL = r'https?://(?:www\.)?mewatch\.sg/watch/[^/?#&]+-(?P<id>[0-9]+)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'https://www.mewatch.sg/watch/Recipe-Of-Life-E1-179371',
|
'url': 'https://www.mewatch.sg/watch/Recipe-Of-Life-E1-179371',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -220,9 +220,6 @@ class MeWatchIE(InfoExtractor):
|
|||||||
}, {
|
}, {
|
||||||
'url': 'https://www.mewatch.sg/watch/Little-Red-Dot-Detectives-S2-%E6%90%9C%E5%AF%86%E3%80%82%E6%89%93%E5%8D%A1%E3%80%82%E5%B0%8F%E7%BA%A2%E7%82%B9-S2-E1-176232',
|
'url': 'https://www.mewatch.sg/watch/Little-Red-Dot-Detectives-S2-%E6%90%9C%E5%AF%86%E3%80%82%E6%89%93%E5%8D%A1%E3%80%82%E5%B0%8F%E7%BA%A2%E7%82%B9-S2-E1-176232',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
}, {
|
|
||||||
'url': 'https://live.mewatch.sg/watch/Recipe-Of-Life-E41-189759',
|
|
||||||
'only_matching': True,
|
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
@ -85,13 +85,7 @@ class ZypeIE(InfoExtractor):
|
|||||||
else:
|
else:
|
||||||
m3u8_url = self._search_regex(
|
m3u8_url = self._search_regex(
|
||||||
r'(["\'])(?P<url>(?:(?!\1).)+\.m3u8(?:(?!\1).)*)\1',
|
r'(["\'])(?P<url>(?:(?!\1).)+\.m3u8(?:(?!\1).)*)\1',
|
||||||
body, 'm3u8 url', group='url', default=None)
|
body, 'm3u8 url', group='url')
|
||||||
if not m3u8_url:
|
|
||||||
source = self._parse_json(self._search_regex(
|
|
||||||
r'(?s)sources\s*:\s*\[\s*({.+?})\s*\]', body,
|
|
||||||
'source'), video_id, js_to_json)
|
|
||||||
if source.get('integration') == 'verizon-media':
|
|
||||||
m3u8_url = 'https://content.uplynk.com/%s.m3u8' % source['id']
|
|
||||||
formats = self._extract_m3u8_formats(
|
formats = self._extract_m3u8_formats(
|
||||||
m3u8_url, video_id, 'mp4', 'm3u8_native', m3u8_id='hls')
|
m3u8_url, video_id, 'mp4', 'm3u8_native', m3u8_id='hls')
|
||||||
text_tracks = self._search_regex(
|
text_tracks = self._search_regex(
|
||||||
|
Loading…
Reference in New Issue
Block a user