Skip to content

Commit

Permalink
[fujitv] fix HLS formats extension(closes #28416)
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine committed Mar 12, 2021
1 parent fc2c6d5 commit 9c644a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/fujitv.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9c644a6

Please sign in to comment.