2016-08-28 15:50:32 +00:00
# coding: utf-8
from __future__ import unicode_literals
import re
from . turner import TurnerBaseIE
2018-05-30 12:21:07 +00:00
from . . compat import (
compat_urllib_parse_urlparse ,
compat_parse_qs ,
)
2017-12-11 12:38:55 +00:00
from . . utils import (
float_or_none ,
int_or_none ,
strip_or_none ,
)
2016-08-28 15:50:32 +00:00
class TBSIE ( TurnerBaseIE ) :
2021-06-26 11:44:43 +00:00
_VALID_URL = r ' https?://(?:www \ .)?(?P<site>tbs|tntdrama) \ .com(?P<path>/(?:movies|watchtnt|shows/[^/]+/(?:clips|season- \ d+/episode- \ d+))/(?P<id>[^/?#]+)) '
2016-08-28 15:50:32 +00:00
_TESTS = [ {
2017-12-11 12:38:55 +00:00
' url ' : ' http://www.tntdrama.com/shows/the-alienist/clips/monster ' ,
2016-08-28 15:50:32 +00:00
' info_dict ' : {
2017-12-11 12:38:55 +00:00
' id ' : ' 8d384cde33b89f3a43ce5329de42903ed5099887 ' ,
2016-08-28 15:50:32 +00:00
' ext ' : ' mp4 ' ,
2017-12-11 12:38:55 +00:00
' title ' : ' Monster ' ,
' description ' : ' Get a first look at the theatrical trailer for TNT’ s highly anticipated new psychological thriller The Alienist, which premieres January 22 on TNT. ' ,
' timestamp ' : 1508175329 ,
' upload_date ' : ' 20171016 ' ,
2017-07-20 13:19:09 +00:00
} ,
2017-12-11 12:38:55 +00:00
' params ' : {
# m3u8 download
' skip_download ' : True ,
}
2016-08-28 15:50:32 +00:00
} , {
2017-12-11 12:38:55 +00:00
' url ' : ' http://www.tbs.com/shows/search-party/season-1/episode-1/explicit-the-mysterious-disappearance-of-the-girl-no-one-knew ' ,
' only_matching ' : True ,
} , {
' url ' : ' http://www.tntdrama.com/movies/star-wars-a-new-hope ' ,
' only_matching ' : True ,
2016-08-28 15:50:32 +00:00
} ]
def _real_extract ( self , url ) :
2021-08-19 01:41:24 +00:00
site , path , display_id = self . _match_valid_url ( url ) . groups ( )
2016-08-28 15:50:32 +00:00
webpage = self . _download_webpage ( url , display_id )
2018-05-30 12:21:07 +00:00
drupal_settings = self . _parse_json ( self . _search_regex (
2017-12-11 12:38:55 +00:00
r ' <script[^>]+?data-drupal-selector= " drupal-settings-json " [^>]*?>( { .+?})</script> ' ,
2018-05-30 12:21:07 +00:00
webpage , ' drupal setting ' ) , display_id )
2021-06-26 11:44:43 +00:00
isLive = ' watchtnt ' in path
video_data = next ( v for v in drupal_settings [ ' turner_playlist ' ] if isLive or v . get ( ' url ' ) == path )
2017-12-11 12:38:55 +00:00
media_id = video_data [ ' mediaID ' ]
title = video_data [ ' title ' ]
2018-05-30 12:21:07 +00:00
tokenizer_query = compat_parse_qs ( compat_urllib_parse_urlparse (
drupal_settings [ ' ngtv_token_url ' ] ) . query )
2017-12-11 12:38:55 +00:00
2018-05-30 12:21:07 +00:00
info = self . _extract_ngtv_info (
media_id , tokenizer_query , {
' url ' : url ,
' site_name ' : site [ : 3 ] . upper ( ) ,
2021-06-26 11:44:43 +00:00
' auth_required ' : video_data . get ( ' authRequired ' ) == ' 1 ' or isLive ,
' is_live ' : isLive
2018-05-30 12:21:07 +00:00
} )
2017-12-11 12:38:55 +00:00
thumbnails = [ ]
for image_id , image in video_data . get ( ' images ' , { } ) . items ( ) :
image_url = image . get ( ' url ' )
if not image_url or image . get ( ' type ' ) != ' video ' :
continue
i = {
' id ' : image_id ,
' url ' : image_url ,
}
mobj = re . search ( r ' ( \ d+)x( \ d+) ' , image_url )
if mobj :
i . update ( {
' width ' : int ( mobj . group ( 1 ) ) ,
' height ' : int ( mobj . group ( 2 ) ) ,
} )
thumbnails . append ( i )
2018-05-30 12:21:07 +00:00
info . update ( {
2017-12-11 12:38:55 +00:00
' id ' : media_id ,
' title ' : title ,
' description ' : strip_or_none ( video_data . get ( ' descriptionNoTags ' ) or video_data . get ( ' shortDescriptionNoTags ' ) ) ,
2018-05-30 12:21:07 +00:00
' duration ' : float_or_none ( video_data . get ( ' duration ' ) ) or info . get ( ' duration ' ) ,
2017-12-11 12:38:55 +00:00
' timestamp ' : int_or_none ( video_data . get ( ' created ' ) ) ,
' season_number ' : int_or_none ( video_data . get ( ' season ' ) ) ,
' episode_number ' : int_or_none ( video_data . get ( ' episode ' ) ) ,
' thumbnails ' : thumbnails ,
2021-06-26 11:44:43 +00:00
' is_live ' : isLive
2018-05-30 12:21:07 +00:00
} )
return info