3 from .common
import InfoExtractor
4 from ..networking
.exceptions
import HTTPError
14 class ViewLiftBaseIE(InfoExtractor
):
15 _API_BASE
= 'https://prod-api.viewlift.com/'
16 _DOMAINS_REGEX
= r
'(?:(?:main\.)?snagfilms|snagxtreme|funnyforfree|kiddovid|winnersview|(?:monumental|lax)sportsnetwork|vayafilm|failarmy|ftfnext|lnppass\.legapallacanestro|moviespree|app\.myoutdoortv|neoufitness|pflmma|theidentitytb|chorki)\.com|(?:hoichoi|app\.horseandcountry|kronon|marquee|supercrosslive)\.tv'
19 'funnyforfree': 'snagfilms',
20 'hoichoi': 'hoichoitv',
21 'kiddovid': 'snagfilms',
22 'laxsportsnetwork': 'lax',
23 'legapallacanestro': 'lnp',
24 'marquee': 'marquee-tv',
25 'monumentalsportsnetwork': 'monumental-network',
26 'moviespree': 'bingeflix',
28 'snagxtreme': 'snagfilms',
29 'theidentitytb': 'tampabay',
30 'vayafilm': 'snagfilms',
31 'chorki': 'prothomalo',
35 def _fetch_token(self
, site
, url
):
36 if self
._TOKENS
.get(site
):
39 cookies
= self
._get
_cookies
(url
)
40 if cookies
and cookies
.get('token'):
41 self
._TOKENS
[site
] = self
._search
_regex
(r
'22authorizationToken\%22:\%22([^\%]+)\%22', cookies
['token'].value
, 'token')
42 if not self
._TOKENS
.get(site
):
43 self
.raise_login_required('Cookies (not necessarily logged in) are needed to download from this website', method
='cookies')
45 def _call_api(self
, site
, path
, video_id
, url
, query
):
46 self
._fetch
_token
(site
, url
)
48 return self
._download
_json
(
49 self
._API
_BASE
+ path
, video_id
, headers
={'Authorization': self
._TOKENS
.get(site
)}, query
=query
)
50 except ExtractorError
as e
:
51 if isinstance(e
.cause
, HTTPError
) and e
.cause
.status
== 403:
52 webpage
= e
.cause
.response
.read().decode()
54 error_message
= traverse_obj(json
.loads(webpage
), 'errorMessage', 'message')
55 except json
.JSONDecodeError
:
56 raise ExtractorError(f
'{site} said: {webpage}', cause
=e
.cause
)
58 if 'has not purchased' in error_message
:
59 self
.raise_login_required(method
='cookies')
60 raise ExtractorError(error_message
, expected
=True)
64 class ViewLiftEmbedIE(ViewLiftBaseIE
):
65 IE_NAME
= 'viewlift:embed'
66 _VALID_URL
= rf
'https?://(?:(?:www|embed)\.)?(?P<domain>{ViewLiftBaseIE._DOMAINS_REGEX})/embed/player\?.*\bfilmId=(?P<id>[\da-f]{{8}}-(?:[\da-f]{{4}}-){{3}}[\da-f]{{12}})'
67 _EMBED_REGEX
= [rf
'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:embed\.)?(?:{ViewLiftBaseIE._DOMAINS_REGEX})/embed/player.+?)\1']
69 'url': 'http://embed.snagfilms.com/embed/player?filmId=74849a00-85a9-11e1-9660-123139220831&w=500',
70 'md5': '2924e9215c6eff7a55ed35b72276bd93',
72 'id': '74849a00-85a9-11e1-9660-123139220831',
74 'title': '#whilewewatch',
75 'description': 'md5:b542bef32a6f657dadd0df06e26fb0c8',
76 'timestamp': 1334350096,
77 'upload_date': '20120413',
80 # invalid labels, 360p is better that 480p
81 'url': 'http://www.snagfilms.com/embed/player?filmId=17ca0950-a74a-11e0-a92a-0026bb61d036',
82 'md5': '882fca19b9eb27ef865efeeaed376a48',
84 'id': '17ca0950-a74a-11e0-a92a-0026bb61d036',
86 'title': 'Life in Limbo',
88 'skip': 'The video does not exist',
90 'url': 'http://www.snagfilms.com/embed/player?filmId=0000014c-de2f-d5d6-abcf-ffef58af0017',
91 'only_matching': True,
94 def _real_extract(self
, url
):
95 domain
, film_id
= self
._match
_valid
_url
(url
).groups()
96 site
= domain
.split('.')[-2]
97 if site
in self
._SITE
_MAP
:
98 site
= self
._SITE
_MAP
[site
]
100 content_data
= self
._call
_api
(
101 site
, 'entitlement/video/status', film_id
, url
, {
104 gist
= content_data
['gist']
105 title
= gist
['title']
106 video_assets
= content_data
['streamingInfo']['videoAssets']
108 hls_url
= video_assets
.get('hls')
109 formats
, subtitles
= [], {}
111 formats
, subtitles
= self
._extract
_m
3u8_formats
_and
_subtitles
(
112 hls_url
, film_id
, 'mp4', 'm3u8_native', m3u8_id
='hls', fatal
=False)
114 for video_asset
in video_assets
.get('mpeg') or []:
115 video_asset_url
= video_asset
.get('url')
116 if not video_asset_url
:
118 bitrate
= int_or_none(video_asset
.get('bitrate'))
119 height
= int_or_none(self
._search
_regex
(
120 r
'^_?(\d+)[pP]$', video_asset
.get('renditionValue'),
121 'height', default
=None))
123 'url': video_asset_url
,
124 'format_id': join_nonempty('http', bitrate
),
127 'vcodec': video_asset
.get('codec'),
131 for sub
in traverse_obj(content_data
, ('contentDetails', 'closedCaptions')) or []:
132 sub_url
= sub
.get('url')
135 subs
.setdefault(sub
.get('language', 'English'), []).append({
142 'description': gist
.get('description'),
143 'thumbnail': gist
.get('videoImageUrl'),
144 'duration': int_or_none(gist
.get('runtime')),
145 'age_limit': parse_age_limit(content_data
.get('parentalRating')),
146 'timestamp': int_or_none(gist
.get('publishDate'), 1000),
148 'subtitles': self
._merge
_subtitles
(subs
, subtitles
),
149 'categories': traverse_obj(content_data
, ('categories', ..., 'title')),
150 'tags': traverse_obj(content_data
, ('tags', ..., 'title')),
154 class ViewLiftIE(ViewLiftBaseIE
):
156 _API_BASE
= 'https://prod-api-cached-2.viewlift.com/'
157 _VALID_URL
= rf
'https?://(?:www\.)?(?P<domain>{ViewLiftBaseIE._DOMAINS_REGEX})(?P<path>(?:/(?:films/title|show|(?:news/)?videos?|watch))?/(?P<id>[^?#]+))'
159 'url': 'http://www.snagfilms.com/films/title/lost_for_life',
160 'md5': '19844f897b35af219773fd63bdec2942',
162 'id': '0000014c-de2f-d5d6-abcf-ffef58af0017',
163 'display_id': 'lost_for_life',
165 'title': 'Lost for Life',
166 'description': 'md5:ea10b5a50405ae1f7b5269a6ec594102',
167 'thumbnail': r
're:^https?://.*\.jpg',
169 'categories': 'mincount:3',
171 'upload_date': '20150421',
172 'timestamp': 1429656820,
175 'url': 'http://www.snagfilms.com/show/the_world_cut_project/india',
176 'md5': 'e6292e5b837642bbda82d7f8bf3fbdfd',
178 'id': '00000145-d75c-d96e-a9c7-ff5c67b20000',
179 'display_id': 'the_world_cut_project/india',
182 'description': 'md5:5c168c5a8f4719c146aad2e0dfac6f5f',
183 'thumbnail': r
're:^https?://.*\.jpg',
185 'timestamp': 1399478279,
186 'upload_date': '20140507',
189 'url': 'http://main.snagfilms.com/augie_alone/s_2_ep_12_love',
191 'id': '00000148-7b53-de26-a9fb-fbf306f70020',
192 'display_id': 'augie_alone/s_2_ep_12_love',
194 'title': 'S. 2 Ep. 12 - Love',
195 'description': 'Augie finds love.',
196 'thumbnail': r
're:^https?://.*\.jpg',
198 'upload_date': '20141012',
199 'timestamp': 1413129540,
203 'skip_download': True,
206 'url': 'http://main.snagfilms.com/films/title/the_freebie',
207 'only_matching': True,
209 # Film is not playable in your area.
210 'url': 'http://www.snagfilms.com/films/title/inside_mecca',
211 'only_matching': True,
213 # Film is not available.
214 'url': 'http://www.snagfilms.com/show/augie_alone/flirting',
215 'only_matching': True,
217 'url': 'http://www.winnersview.com/videos/the-good-son',
218 'only_matching': True,
220 # Was once Kaltura embed
221 'url': 'https://www.monumentalsportsnetwork.com/videos/john-carlson-postgame-2-25-15',
222 'only_matching': True,
224 'url': 'https://www.marquee.tv/watch/sadlerswells-sacredmonsters',
225 'only_matching': True,
226 }, { # Free film with langauge code
227 'url': 'https://www.hoichoi.tv/bn/films/title/shuyopoka',
229 'id': '7a7a9d33-1f4c-4771-9173-ee4fb6dbf196',
231 'title': 'Shuyopoka',
232 'description': 'md5:e28f2fb8680096a69c944d37c1fa5ffc',
233 'thumbnail': r
're:^https?://.*\.jpg$',
234 'upload_date': '20211006',
236 'params': {'skip_download': True},
238 'url': 'https://www.hoichoi.tv/films/title/dadu-no1',
240 'id': '0000015b-b009-d126-a1db-b81ff3780000',
242 'title': 'Dadu No.1',
243 'description': 'md5:605cba408e51a79dafcb824bdeded51e',
244 'thumbnail': r
're:^https?://.*\.jpg$',
245 'upload_date': '20210827',
247 'params': {'skip_download': True},
249 'url': 'https://www.hoichoi.tv/webseries/case-jaundice-s01-e01',
251 'id': 'f779e07c-30c8-459c-8612-5a834ab5e5ba',
253 'title': 'Humans Vs. Corona',
254 'description': 'md5:ca30a682b4528d02a3eb6d0427dd0f87',
255 'thumbnail': r
're:^https?://.*\.jpg$',
256 'upload_date': '20210830',
257 'series': 'Case Jaundice',
259 'params': {'skip_download': True},
261 'url': 'https://www.hoichoi.tv/videos/1549072415320-six-episode-02-hindi',
263 'id': 'b41fa1ce-aca6-47b6-b208-283ff0a2de30',
265 'title': 'Woman in red - Hindi',
266 'description': 'md5:9d21edc1827d32f8633eb67c2054fc31',
267 'thumbnail': r
're:^https?://.*\.jpg$',
268 'upload_date': '20211006',
269 'series': 'Six (Hindi)',
271 'params': {'skip_download': True},
273 'url': 'https://www.hoichoi.tv/shows/watch-asian-paints-moner-thikana-online-season-1-episode-1',
275 'id': '1f45d185-8500-455c-b88d-13252307c3eb',
277 'title': 'Jisshu Sengupta',
278 'description': 'md5:ef6ffae01a3d83438597367400f824ed',
279 'thumbnail': r
're:^https?://.*\.jpg$',
280 'upload_date': '20211004',
281 'series': 'Asian Paints Moner Thikana',
283 'params': {'skip_download': True},
285 'url': 'https://www.hoichoi.tv/shows/watch-moner-thikana-bengali-web-series-online',
286 'playlist_mincount': 5,
288 'id': 'watch-moner-thikana-bengali-web-series-online',
290 }, { # Premium series
291 'url': 'https://www.hoichoi.tv/shows/watch-byomkesh-bengali-web-series-online',
292 'playlist_mincount': 14,
294 'id': 'watch-byomkesh-bengali-web-series-online',
297 'url': 'https://www.hoichoi.tv/movies/detective-2020',
298 'only_matching': True,
299 }, { # Chorki Premium series
300 'url': 'https://www.chorki.com/bn/series/sinpaat',
301 'playlist_mincount': 7,
303 'id': 'bn/series/sinpaat',
305 }, { # Chorki free movie
306 'url': 'https://www.chorki.com/bn/videos/bangla-movie-bikkhov',
308 'id': '564e755b-f5c7-4515-aee6-8959bee18c93',
311 'upload_date': '20230824',
312 'timestamp': 1692860553,
313 'categories': ['Action Movies', 'Salman Special'],
315 'thumbnail': 'https://snagfilms-a.akamaihd.net/dd078ff5-b16e-45e4-9723-501b56b9df0a/images/2023/08/24/1692860450729_1920x1080_16x9Images.jpg',
316 'display_id': 'bn/videos/bangla-movie-bikkhov',
317 'description': 'md5:71492b086450625f4374a3eb824f27dc',
321 'skip_download': True,
323 }, { # Chorki Premium movie
324 'url': 'https://www.chorki.com/bn/videos/something-like-an-autobiography',
325 'only_matching': True,
329 def suitable(cls
, url
):
330 return False if ViewLiftEmbedIE
.suitable(url
) else super().suitable(url
)
332 def _show_entries(self
, domain
, seasons
):
333 for season
in seasons
:
334 for episode
in season
.get('episodes') or []:
335 path
= traverse_obj(episode
, ('gist', 'permalink'))
337 yield self
.url_result(f
'https://www.{domain}{path}', ie
=self
.ie_key())
339 def _real_extract(self
, url
):
340 domain
, path
, display_id
= self
._match
_valid
_url
(url
).groups()
341 site
= domain
.split('.')[-2]
342 if site
in self
._SITE
_MAP
:
343 site
= self
._SITE
_MAP
[site
]
344 modules
= self
._call
_api
(
345 site
, 'content/pages', display_id
, url
, {
346 'includeContent': 'true',
352 seasons
= next((m
['contentData'][0]['seasons'] for m
in modules
if m
.get('moduleType') == 'ShowDetailModule'), None)
354 return self
.playlist_result(self
._show
_entries
(domain
, seasons
), display_id
)
356 film_id
= next(m
['contentData'][0]['gist']['id'] for m
in modules
if m
.get('moduleType') == 'VideoDetailModule')
358 '_type': 'url_transparent',
359 'url': f
'http://{domain}/embed/player?filmId={film_id}',
361 'display_id': display_id
,
362 'ie_key': 'ViewLiftEmbed',