I have been wracking my brains out with this one and would like to get some opinions.
Problem is that when playlist is initiated via script and HTTP module, the list is showing the LINK and not the ID TITLE.
Inside there are UDP addresses and my goal is to make it "readable" for human eyes.
Example (excerpt from real playlist with changed IP's) and without all headers and just targeting link:
Code: Select all
<title>Playlist</title>
<trackList>
<track>
<title>CHANNEL</title>
<location>udp://@[b]some.ip.number.here:port[/b]</location>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:id>0</vlc:id>
<vlc:option>udp-caching=750</vlc:option>
</extension>
</track>
Code: Select all
vlc c:\xxx\xxxxxx.xspf --extraintf http --http-host=hostname:1234 :sout=#std{access=http,mux=ts,dst=xxx.xxx.xxx.xxx:xxx} :sout-keep :sout-mux-caching=2000
The outcome is:
In GUI (--extraintf) the CHANNEL name is correctly displayed. In http module however (accessed on port 1234 in this example) only udp://@some.ip.number.here:port is displayed.
I have tried to examine XML responsible for this display in http folder but it is beyond my ability to understand what should I replace to have TITLE tag displayed instead of link itself.
I have cca 30 differrent inputs and it is virtually impossible to have this sorted on any simple way .
Please help!