youtube-dl

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

commit a9ee4f6e49a5910b432d0ba4d8dc60231aa7deba
parent aaab8c5e711c773885f67fd53788c89d94d48031
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 15 Oct 2017 11:03:54 +0700

[downloader/hls] Fix total fragments count when ad fragments exist

Diffstat:
Myoutube_dl/downloader/hls.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py @@ -88,6 +88,7 @@ class HlsFD(FragmentFD): if line.startswith('#'): if anvato_ad(line): ad_frags += 1 + ad_frag_next = True continue if ad_frag_next: ad_frag_next = False