I'm trying to convert the contents of an xspf file for use on some STBs.
Here's an extract from the xspf/xml file:
Code: Select all
<track>
<location>udp://@ip:port</location>
<title>title of channel</title>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:id>0</vlc:id>
<vlc:option>udp-caching=300</vlc:option>
<vlc:option>program=6230</vlc:option>
</extension>
</track>
The problem is that several entries match in the ip:port part, and thus simply replacing 'udp://@' with 'igmp://' makes the STBs see only one channel. So the deciding factor must be the program=number parameter. Now I'm wondering if and how is it possible to pass the parameter for an igmp:// type of url.