summary refs log tree commit diff
diff options
context:
space:
mode:
authorThe Hatsune Daishi <nao20010128@gmail.com>2021-04-24 20:58:03 +0900
committerGitHub <noreply@github.com>2021-04-24 18:58:03 +0700
commit0db79d8181c1c3ebf74b9b6d38262c8dcaaf0f4f (patch)
tree3a9dbc3490d7708536c99a6c5b99ef0aa56ae2f5
parent7e8b3f9439ebefb3a3a4e5da9c0bd2b595976438 (diff)
downloadyoutube-dl-0db79d8181c1c3ebf74b9b6d38262c8dcaaf0f4f.tar.gz
youtube-dl-0db79d8181c1c3ebf74b9b6d38262c8dcaaf0f4f.tar.xz
youtube-dl-0db79d8181c1c3ebf74b9b6d38262c8dcaaf0f4f.zip
[tver] Redirect all downloads to Brightcove (#28849)
-rw-r--r--youtube_dl/extractor/tver.py37
1 files changed, 11 insertions, 26 deletions
diff --git a/youtube_dl/extractor/tver.py b/youtube_dl/extractor/tver.py
index a54f49319..a4a30b1e6 100644
--- a/youtube_dl/extractor/tver.py
+++ b/youtube_dl/extractor/tver.py
@@ -9,7 +9,6 @@ from ..utils import (
     int_or_none,
     remove_start,
     smuggle_url,
-    strip_or_none,
     try_get,
 )
 
@@ -45,32 +44,18 @@ class TVerIE(InfoExtractor):
             query={'token': self._TOKEN})['main']
         p_id = main['publisher_id']
         service = remove_start(main['service'], 'ts_')
-        info = {
+
+        r_id = main['reference_id']
+        if service not in ('tx', 'russia2018', 'sebare2018live', 'gorin'):
+            r_id = 'ref:' + r_id
+        bc_url = smuggle_url(
+            self.BRIGHTCOVE_URL_TEMPLATE % (p_id, r_id),
+            {'geo_countries': ['JP']})
+
+        return {
             '_type': 'url_transparent',
             'description': try_get(main, lambda x: x['note'][0]['text'], compat_str),
             'episode_number': int_or_none(try_get(main, lambda x: x['ext']['episode_number'])),
+            'url': bc_url,
+            'ie_key': 'BrightcoveNew',
         }
-
-        if service == 'cx':
-            title = main['title']
-            subtitle = strip_or_none(main.get('subtitle'))
-            if subtitle:
-                title += ' - ' + subtitle
-            info.update({
-                'title': title,
-                'url': 'https://i.fod.fujitv.co.jp/plus7/web/%s/%s.html' % (p_id[:4], p_id),
-                'ie_key': 'FujiTVFODPlus7',
-            })
-        else:
-            r_id = main['reference_id']
-            if service not in ('tx', 'russia2018', 'sebare2018live', 'gorin'):
-                r_id = 'ref:' + r_id
-            bc_url = smuggle_url(
-                self.BRIGHTCOVE_URL_TEMPLATE % (p_id, r_id),
-                {'geo_countries': ['JP']})
-            info.update({
-                'url': bc_url,
-                'ie_key': 'BrightcoveNew',
-            })
-
-        return info