forked from ytdl-org/youtube-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6c6f78
commit f41794b
Showing
3 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# coding: utf-8 | ||
from __future__ import unicode_literals | ||
|
||
from .common import InfoExtractor | ||
|
||
|
||
class FujiTVFODPlus7IE(InfoExtractor): | ||
_VALID_URL = r'https?://i\.fod\.fujitv\.co\.jp/plus7/web/[0-9a-z]{4}/(?P<id>[0-9a-z]+)' | ||
_BASE_URL = 'http://i.fod.fujitv.co.jp/' | ||
_BITRATE_MAP = { | ||
300: (320, 180), | ||
800: (640, 360), | ||
1200: (1280, 720), | ||
2000: (1280, 720), | ||
} | ||
|
||
def _real_extract(self, url): | ||
video_id = self._match_id(url) | ||
formats = self._extract_m3u8_formats( | ||
self._BASE_URL + 'abr/pc_html5/%s.m3u8' % video_id, video_id) | ||
for f in formats: | ||
wh = self._BITRATE_MAP.get(f.get('tbr')) | ||
if wh: | ||
f.update({ | ||
'width': wh[0], | ||
'height': wh[1], | ||
}) | ||
self._sort_formats(formats) | ||
|
||
return { | ||
'id': video_id, | ||
'title': video_id, | ||
'formats': formats, | ||
'thumbnail': self._BASE_URL + 'pc/image/wbtn/wbtn_%s.jpg' % video_id, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# coding: utf-8 | ||
from __future__ import unicode_literals | ||
|
||
import re | ||
|
||
from .common import InfoExtractor | ||
from ..compat import compat_str | ||
from ..utils import ( | ||
int_or_none, | ||
remove_start, | ||
smuggle_url, | ||
try_get, | ||
) | ||
|
||
|
||
class TVerIE(InfoExtractor): | ||
_VALID_URL = r'https?://(?:www\.)?tver\.jp/(?P<path>(?:corner|episode|feature)/(?P<id>f?\d+))' | ||
# videos are only available for 7 days | ||
_TESTS = [{ | ||
'url': 'https://tver.jp/corner/f0062178', | ||
'only_matching': True, | ||
}, { | ||
'url': 'https://tver.jp/feature/f0062413', | ||
'only_matching': True, | ||
}, { | ||
'url': 'https://tver.jp/episode/79622438', | ||
'only_matching': True, | ||
}] | ||
_TOKEN = None | ||
BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/%s/default_default/index.html?videoId=%s' | ||
|
||
def _real_initialize(self): | ||
self._TOKEN = self._download_json( | ||
'https://tver.jp/api/access_token.php', None)['token'] | ||
|
||
def _real_extract(self, url): | ||
path, video_id = re.match(self._VALID_URL, url).groups() | ||
main = self._download_json( | ||
'https://api.tver.jp/v4/' + path, video_id, | ||
query={'token': self._TOKEN})['main'] | ||
p_id = main['publisher_id'] | ||
service = remove_start(main['service'], 'ts_') | ||
info = { | ||
'_type': 'url_transparent', | ||
'description': try_get(main, lambda x: x['note'][0]['text'], compat_str), | ||
'episode': int_or_none(try_get(main, lambda x: x['ext']['episode_number'])), | ||
} | ||
|
||
if service == 'cx': | ||
info.update({ | ||
'title': main.get('subtitle') or main['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 |