aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-08-15 16:33:35 +0100
committerRemita Amine <remitamine@gmail.com>2016-08-15 16:34:32 +0100
commitbf90c46790bac92e8a61ee0514cf3c41a8c048e9 (patch)
treeb8be584925cca9bda6c889e080f594b994468cc0
parent69eb4d699fe3f6d84acc7882e427e661040faecb (diff)
downloadyoutube-dl-bf90c46790bac92e8a61ee0514cf3c41a8c048e9.zip
youtube-dl-bf90c46790bac92e8a61ee0514cf3c41a8c048e9.tar.gz
youtube-dl-bf90c46790bac92e8a61ee0514cf3c41a8c048e9.tar.bz2
[fxnetworks] Add new extractor(closes #9462)
-rw-r--r--youtube_dl/extractor/extractors.py1
-rw-r--r--youtube_dl/extractor/fxnetworks.py49
2 files changed, 50 insertions, 0 deletions
diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py
index 15bc0a6..07928c5 100644
--- a/youtube_dl/extractor/extractors.py
+++ b/youtube_dl/extractor/extractors.py
@@ -287,6 +287,7 @@ from .freevideo import FreeVideoIE
from .funimation import FunimationIE
from .funnyordie import FunnyOrDieIE
from .fusion import FusionIE
+from .fxnetworks import FXNetworksIE
from .gameinformer import GameInformerIE
from .gameone import (
GameOneIE,
diff --git a/youtube_dl/extractor/fxnetworks.py b/youtube_dl/extractor/fxnetworks.py
new file mode 100644
index 0000000..70bc186
--- /dev/null
+++ b/youtube_dl/extractor/fxnetworks.py
@@ -0,0 +1,49 @@
+# 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',
+ }