diff options
author | Remita Amine <remitamine@gmail.com> | 2021-03-12 09:51:01 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2021-03-12 09:51:01 +0100 |
commit | 9c644a641922e5ac3b5b4a1c9386fa599973e885 (patch) | |
tree | 2f04a421a95e07849b022a82fbb78dbe03dd0989 | |
parent | fc2c6d53239d4b4a6bac5383441152117ccf3c6f (diff) |
[fujitv] fix HLS formats extension(closes #28416)
-rw-r--r-- | youtube_dl/extractor/fujitv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/fujitv.py b/youtube_dl/extractor/fujitv.py index 39685e075..a02a94374 100644 --- a/youtube_dl/extractor/fujitv.py +++ b/youtube_dl/extractor/fujitv.py @@ -17,7 +17,7 @@ class FujiTVFODPlus7IE(InfoExtractor): 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) + self._BASE_URL + 'abr/pc_html5/%s.m3u8' % video_id, video_id, 'mp4') for f in formats: wh = self._BITRATE_MAP.get(f.get('tbr')) if wh: |