1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-02 02:19:29 +00:00

[pluralsight] Fix missing first line of subtitles (closes #11118)

This commit is contained in:
50csent 2017-12-29 22:59:49 +02:00 committed by Sergey M․
parent d2c5b5a951
commit 2c8e11b4af
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -171,12 +171,12 @@ class PluralsightIE(PluralsightBaseIE):
for num, current in enumerate(subs): for num, current in enumerate(subs):
current = subs[num] current = subs[num]
start, text = ( start, text = (
float_or_none(dict_get(current, TIME_OFFSET_KEYS)), float_or_none(dict_get(current, TIME_OFFSET_KEYS, skip_false_values=False)),
dict_get(current, TEXT_KEYS)) dict_get(current, TEXT_KEYS))
if start is None or text is None: if start is None or text is None:
continue continue
end = duration if num == len(subs) - 1 else float_or_none( end = duration if num == len(subs) - 1 else float_or_none(
dict_get(subs[num + 1], TIME_OFFSET_KEYS)) dict_get(subs[num + 1], TIME_OFFSET_KEYS, skip_false_values=False))
if end is None: if end is None:
continue continue
srt += os.linesep.join( srt += os.linesep.join(