From 7bec3eb85bd3329ec6611cf65666ff8948f4916a Mon Sep 17 00:00:00 2001 From: Fraxinas Date: Fri, 29 May 2009 13:48:31 +0200 Subject: add streaming protocols for correct uri handling --- lib/python/Components/Playlist.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/python') diff --git a/lib/python/Components/Playlist.py b/lib/python/Components/Playlist.py index c9ebe479..bcb4e3df 100644 --- a/lib/python/Components/Playlist.py +++ b/lib/python/Components/Playlist.py @@ -73,12 +73,14 @@ class PlaylistIOM3U(PlaylistIO): self.displayname = extinf[1] # TODO: use e2 facilities to create a service ref from file elif entry[0] != "#": + remote_protos = ["http", "https", "udp", "rtsp", "rtp", "mmp"] if entry[0] == "/": sref = ServiceReference("4097:0:0:0:0:0:0:0:0:0:" + entry) - elif entry.startswith("http"): - sref = ServiceReference("4097:0:0:0:0:0:0:0:0:0:" + entry.replace(':',"%3a")) else: sref = ServiceReference("4097:0:0:0:0:0:0:0:0:0:" + os.path.dirname(filename) + "/" + entry) + for proto in remote_protos: + if entry.startswith(proto): + sref = ServiceReference("4097:0:0:0:0:0:0:0:0:0:" + entry.replace(':',"%3a")) if self.displayname: sref.ref.setName(self.displayname) self.displayname = None -- cgit v1.2.3