youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit f5436c5d9e4e65790440ada40476712ff430651b
parent 5c24873a9e6a47e58b10eb0c0825e165604796f2
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun,  8 May 2016 02:29:26 +0600

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

Diffstat:
Myoutube_dl/downloader/external.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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