[common] Fix format_id construction for HLS

pull/8/head
Yen Chi Hsuan 2016-04-29 22:49:04 +08:00
rodzic 00a17a9e12
commit e9c6cdf4a1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 3FDDD575826C5C30
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1142,7 +1142,7 @@ class InfoExtractor(object):
# Bandwidth of live streams may differ over time thus making
# format_id unpredictable. So it's better to keep provided
# format_id intact.
if last_media_name and not live:
if not live:
format_id.append(last_media_name if last_media_name else '%d' % (tbr if tbr else len(formats)))
f = {
'format_id': '-'.join(format_id),