[extractor/common] Fix typo in _parse_mpd_formats
authorM.K <mk-pmb@users.noreply.github.com>
Tue, 3 Oct 2017 20:50:27 +0000 (22:50 +0200)
committerSergey M <dstftw@gmail.com>
Tue, 3 Oct 2017 20:50:27 +0000 (03:50 +0700)
youtube_dl/extractor/common.py

index 2bbbf8f4d463a0774d75caf8669b693faa9d0232..a878550c2c78ff9d0f20d053e6bfc3875eb20053 100644 (file)
@@ -1920,7 +1920,7 @@ class InfoExtractor(object):
                             # can't be used at the same time
                             if '%(Number' in media_template and 's' not in representation_ms_info:
                                 segment_duration = None
-                                if 'total_number' not in representation_ms_info and 'segment_duration':
+                                if 'total_number' not in representation_ms_info and 'segment_duration' in representation_ms_info:
                                     segment_duration = float_or_none(representation_ms_info['segment_duration'], representation_ms_info['timescale'])
                                     representation_ms_info['total_number'] = int(math.ceil(float(period_duration) / segment_duration))
                                 representation_ms_info['fragments'] = [{