youtube-dl

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

commit c17e100b96e3a1c1d2115226c9a2f166c8338031
parent 8fd12a083131550476fb771c180a0734794d0b9d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 26 Sep 2018 09:27:40 +0700

[pluralsight] Fix subtitles extraction (closes #17671)

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

diff --git a/youtube_dl/extractor/pluralsight.py b/youtube_dl/extractor/pluralsight.py @@ -213,7 +213,7 @@ query viewClip { def _get_subtitles(self, author, clip_idx, lang, name, duration, video_id): captions_post = { 'a': author, - 'cn': clip_idx, + 'cn': int(clip_idx), 'lc': lang, 'm': name, }