aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/tvplay.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/tvplay.py')
-rw-r--r--hypervideo_dl/extractor/tvplay.py223
1 files changed, 5 insertions, 218 deletions
diff --git a/hypervideo_dl/extractor/tvplay.py b/hypervideo_dl/extractor/tvplay.py
index 9ef4f96..48a6efe 100644
--- a/hypervideo_dl/extractor/tvplay.py
+++ b/hypervideo_dl/extractor/tvplay.py
@@ -1,10 +1,8 @@
import re
from .common import InfoExtractor
-from ..compat import (
- compat_HTTPError,
- compat_urlparse,
-)
+from ..compat import compat_urlparse
+from ..networking.exceptions import HTTPError
from ..utils import (
determine_ext,
ExtractorError,
@@ -30,10 +28,7 @@ class TVPlayIE(InfoExtractor):
(?:
tvplay(?:\.skaties)?\.lv(?:/parraides)?|
(?:tv3play|play\.tv3)\.lt(?:/programos)?|
- tv3play(?:\.tv3)?\.ee/sisu|
- (?:tv(?:3|6|8|10)play)\.se/program|
- (?:(?:tv3play|viasat4play|tv6play)\.no|(?:tv3play)\.dk)/programmer|
- play\.nova(?:tv)?\.bg/programi
+ tv3play(?:\.tv3)?\.ee/sisu
)
/(?:[^/]+/)+
)
@@ -93,117 +88,6 @@ class TVPlayIE(InfoExtractor):
},
},
{
- 'url': 'http://www.tv3play.se/program/husraddarna/395385?autostart=true',
- 'info_dict': {
- 'id': '395385',
- 'ext': 'mp4',
- 'title': 'Husräddarna S02E07',
- 'description': 'md5:f210c6c89f42d4fc39faa551be813777',
- 'duration': 2574,
- 'timestamp': 1400596321,
- 'upload_date': '20140520',
- },
- 'params': {
- 'skip_download': True,
- },
- },
- {
- 'url': 'http://www.tv6play.se/program/den-sista-dokusapan/266636?autostart=true',
- 'info_dict': {
- 'id': '266636',
- 'ext': 'mp4',
- 'title': 'Den sista dokusåpan S01E08',
- 'description': 'md5:295be39c872520221b933830f660b110',
- 'duration': 1492,
- 'timestamp': 1330522854,
- 'upload_date': '20120229',
- 'age_limit': 18,
- },
- 'params': {
- 'skip_download': True,
- },
- },
- {
- 'url': 'http://www.tv8play.se/program/antikjakten/282756?autostart=true',
- 'info_dict': {
- 'id': '282756',
- 'ext': 'mp4',
- 'title': 'Antikjakten S01E10',
- 'description': 'md5:1b201169beabd97e20c5ad0ad67b13b8',
- 'duration': 2646,
- 'timestamp': 1348575868,
- 'upload_date': '20120925',
- },
- 'params': {
- 'skip_download': True,
- },
- },
- {
- 'url': 'http://www.tv3play.no/programmer/anna-anka-soker-assistent/230898?autostart=true',
- 'info_dict': {
- 'id': '230898',
- 'ext': 'mp4',
- 'title': 'Anna Anka søker assistent - Ep. 8',
- 'description': 'md5:f80916bf5bbe1c5f760d127f8dd71474',
- 'duration': 2656,
- 'timestamp': 1277720005,
- 'upload_date': '20100628',
- },
- 'params': {
- 'skip_download': True,
- },
- },
- {
- 'url': 'http://www.viasat4play.no/programmer/budbringerne/21873?autostart=true',
- 'info_dict': {
- 'id': '21873',
- 'ext': 'mp4',
- 'title': 'Budbringerne program 10',
- 'description': 'md5:4db78dc4ec8a85bb04fd322a3ee5092d',
- 'duration': 1297,
- 'timestamp': 1254205102,
- 'upload_date': '20090929',
- },
- 'params': {
- 'skip_download': True,
- },
- },
- {
- 'url': 'http://www.tv6play.no/programmer/hotelinspektor-alex-polizzi/361883?autostart=true',
- 'info_dict': {
- 'id': '361883',
- 'ext': 'mp4',
- 'title': 'Hotelinspektør Alex Polizzi - Ep. 10',
- 'description': 'md5:3ecf808db9ec96c862c8ecb3a7fdaf81',
- 'duration': 2594,
- 'timestamp': 1393236292,
- 'upload_date': '20140224',
- },
- 'params': {
- 'skip_download': True,
- },
- },
- {
- 'url': 'http://play.novatv.bg/programi/zdravei-bulgariya/624952?autostart=true',
- 'info_dict': {
- 'id': '624952',
- 'ext': 'flv',
- 'title': 'Здравей, България (12.06.2015 г.) ',
- 'description': 'md5:99f3700451ac5bb71a260268b8daefd7',
- 'duration': 8838,
- 'timestamp': 1434100372,
- 'upload_date': '20150612',
- },
- 'params': {
- # rtmp download
- 'skip_download': True,
- },
- },
- {
- 'url': 'https://play.nova.bg/programi/zdravei-bulgariya/764300?autostart=true',
- 'only_matching': True,
- },
- {
'url': 'http://tvplay.skaties.lv/parraides/vinas-melo-labak/418113?autostart=true',
'only_matching': True,
},
@@ -243,8 +127,8 @@ class TVPlayIE(InfoExtractor):
'http://playapi.mtgx.tv/v3/videos/stream/%s' % video_id,
video_id, 'Downloading streams JSON')
except ExtractorError as e:
- if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
- msg = self._parse_json(e.cause.read().decode('utf-8'), video_id)
+ if isinstance(e.cause, HTTPError) and e.cause.status == 403:
+ msg = self._parse_json(e.cause.response.read().decode('utf-8'), video_id)
raise ExtractorError(msg['msg'], expected=True)
raise
@@ -327,103 +211,6 @@ class TVPlayIE(InfoExtractor):
}
-class ViafreeIE(InfoExtractor):
- _VALID_URL = r'''(?x)
- https?://
- (?:www\.)?
- viafree\.(?P<country>dk|no|se|fi)
- /(?P<id>(?:program(?:mer)?|ohjelmat)?/(?:[^/]+/)+[^/?#&]+)
- '''
- _TESTS = [{
- 'url': 'http://www.viafree.no/programmer/underholdning/det-beste-vorspielet/sesong-2/episode-1',
- 'info_dict': {
- 'id': '757786',
- 'ext': 'mp4',
- 'title': 'Det beste vorspielet - Sesong 2 - Episode 1',
- 'description': 'md5:b632cb848331404ccacd8cd03e83b4c3',
- 'series': 'Det beste vorspielet',
- 'season_number': 2,
- 'duration': 1116,
- 'timestamp': 1471200600,
- 'upload_date': '20160814',
- },
- 'params': {
- 'skip_download': True,
- },
- }, {
- 'url': 'https://www.viafree.dk/programmer/humor/comedy-central-roast-of-charlie-sheen/film/1047660',
- 'info_dict': {
- 'id': '1047660',
- 'ext': 'mp4',
- 'title': 'Comedy Central Roast of Charlie Sheen - Comedy Central Roast of Charlie Sheen',
- 'description': 'md5:ec956d941ae9fd7c65a48fd64951dc6d',
- 'series': 'Comedy Central Roast of Charlie Sheen',
- 'season_number': 1,
- 'duration': 3747,
- 'timestamp': 1608246060,
- 'upload_date': '20201217'
- },
- 'params': {
- 'skip_download': True
- }
- }, {
- # with relatedClips
- 'url': 'http://www.viafree.se/program/reality/sommaren-med-youtube-stjarnorna/sasong-1/avsnitt-1',
- 'only_matching': True,
- }, {
- # Different og:image URL schema
- 'url': 'http://www.viafree.se/program/reality/sommaren-med-youtube-stjarnorna/sasong-1/avsnitt-2',
- 'only_matching': True,
- }, {
- 'url': 'http://www.viafree.se/program/livsstil/husraddarna/sasong-2/avsnitt-2',
- 'only_matching': True,
- }, {
- 'url': 'http://www.viafree.dk/programmer/reality/paradise-hotel/saeson-7/episode-5',
- 'only_matching': True,
- }, {
- 'url': 'http://www.viafree.se/program/underhallning/i-like-radio-live/sasong-1/676869',
- 'only_matching': True,
- }, {
- 'url': 'https://www.viafree.fi/ohjelmat/entertainment/amazing-makeovers/kausi-7/jakso-2',
- 'only_matching': True,
- }]
- _GEO_BYPASS = False
-
- def _real_extract(self, url):
- country, path = self._match_valid_url(url).groups()
- content = self._download_json(
- 'https://viafree-content.mtg-api.com/viafree-content/v1/%s/path/%s' % (country, path), path)
- program = content['_embedded']['viafreeBlocks'][0]['_embedded']['program']
- guid = program['guid']
- meta = content['meta']
- title = meta['title']
-
- try:
- stream_href = self._download_json(
- program['_links']['streamLink']['href'], guid,
- headers=self.geo_verification_headers())['embedded']['prioritizedStreams'][0]['links']['stream']['href']
- except ExtractorError as e:
- if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
- self.raise_geo_restricted(countries=[country])
- raise
-
- formats, subtitles = self._extract_m3u8_formats_and_subtitles(stream_href, guid, 'mp4')
- episode = program.get('episode') or {}
- return {
- 'id': guid,
- 'title': title,
- 'thumbnail': meta.get('image'),
- 'description': meta.get('description'),
- 'series': episode.get('seriesTitle'),
- 'subtitles': subtitles,
- 'episode_number': int_or_none(episode.get('episodeNumber')),
- 'season_number': int_or_none(episode.get('seasonNumber')),
- 'duration': int_or_none(try_get(program, lambda x: x['video']['duration']['milliseconds']), 1000),
- 'timestamp': parse_iso8601(try_get(program, lambda x: x['availability']['start'])),
- 'formats': formats,
- }
-
-
class TVPlayHomeIE(InfoExtractor):
_VALID_URL = r'''(?x)
https?://