aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Playlist.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components/Playlist.py')
-rw-r--r--lib/python/Components/Playlist.py6
1 files changed, 4 insertions, 2 deletions
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