1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +01:00

utils.stream: remove some debug prints

This commit is contained in:
Johan Andersson 2018-07-28 22:49:06 +02:00
parent 8297d6614f
commit a6e2bae955

View File

@ -13,14 +13,12 @@ LIVE_PROTOCOL_PRIO = ["hls", "dash", "hds", "http", "rtmp"]
def sort_quality(data):
data = sorted(data, key=lambda x: (x.bitrate, x.name), reverse=True)
datas = []
print("o: {}".format(data))
for i in data:
datas.append([i.bitrate, i.name])
return datas
def list_quality(videos):
print("videos: {}".format(videos))
data = sort_quality(videos)
logging.info("Quality\tMethod")
for i in data: