Open GoogleCodeExporter opened 9 years ago
Oops, got the filename order reversed. Corrected patch below.
--- trunk/plugin.video.free.cable/resources/lib/abc.py
+++ trunk/plugin.video.free.cable/resources/lib/abc.py
@@ -182,7 +182,7 @@
platpath=False
for filename in filenames:
if filename['src'] <> '':
- bitrate = int(filename['bitrate'])
+ bitrate = int(float(filename['bitrate']))
if bitrate > hbitrate and bitrate <= sbitrate:
hbitrate = bitrate
playpath = filename['src']
Original comment by vernon...@gmail.com
on 9 Feb 2013 at 12:11
Original issue reported on code.google.com by
vernon...@gmail.com
on 9 Feb 2013 at 12:06