Skip to content

Commit

Permalink
[fujitv] fix HLS formats extension(closes ytdl-org#28416)
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine authored and leshasmlesha committed Apr 3, 2021
1 parent 0dc5623 commit 2805249
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
@@ -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:

0 comments on commit 2805249

Please sign in to comment.