[downloader/external] Add temp fix ffmpeg m3u8 downloads (Closes #9394)

master
Sergey M․ 8 years ago
parent 5c24873a9e
commit f5436c5d9e
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

@ -224,7 +224,7 @@ class FFmpegFD(ExternalFD):
args += ['-rtmp_live', 'live'] args += ['-rtmp_live', 'live']
args += ['-i', url, '-c', 'copy'] args += ['-i', url, '-c', 'copy']
if protocol == 'm3u8': if protocol in ('m3u8', 'm3u8_native'):
if self.params.get('hls_use_mpegts', False) or tmpfilename == '-': if self.params.get('hls_use_mpegts', False) or tmpfilename == '-':
args += ['-f', 'mpegts'] args += ['-f', 'mpegts']
else: else:

Loading…
Cancel
Save