[prosiebensat1] Fix bitrate calculation

master
Philipp Hagemeister 10 years ago
parent 9291475f7d
commit 5309602106

@ -249,7 +249,7 @@ class ProSiebenSat1IE(InfoExtractor):
urls_sources = urls_sources.values()
def fix_bitrate(bitrate):
return bitrate / 1000 if bitrate % 1000 == 0 else bitrate
return (bitrate // 1000) if bitrate % 1000 == 0 else bitrate
for source in urls_sources:
protocol = source['protocol']

Loading…
Cancel
Save