From: James Bunton Date: Sat, 16 Feb 2013 23:32:52 +0000 (+1100) Subject: Get MakeMKV port number from a more reliable field X-Git-Url: https://code.delx.au/bluplayer/commitdiff_plain/868b9817a05d10d05fdb97a382030ac8d3c6ff26 Get MakeMKV port number from a more reliable field --- diff --git a/bluplayer.py b/bluplayer.py index ab10d99..9259b83 100755 --- a/bluplayer.py +++ b/bluplayer.py @@ -152,7 +152,9 @@ class MakeMkv(QObject): makemkvcon = MakeMkvCon(["stream", "disc:%s" % disc_number]) for key, line in makemkvcon: if key == "MSG" and line[0] == "4500": - url = "http://localhost:%s/" % line[6] + # Sometimes the port in field 6 is wrong + port = line[5].split(":")[1] + url = "http://localhost:%s/" % port self.load_titles(url) elif key == "MSG": self.status.emit(line[3])