Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fujitv] fix HLS formats extension(closes ytdl-org#28416)
Browse files Browse the repository at this point in the history
remitamine authored and leshasmlesha committed Apr 3, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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.