Media Title on separate lines
Posted: 17 Jul 2012 11:38
Hello Boys n Gals,
I was wondering if its possible to have the title of a file when displayed to be on separate lines?
I have the below play list
I would like the title to display:
Al Kass
Anevia Box 2
7w Nilesat 101
instead of all on one line
I tried the following:
Although this did put the title on separate lines it also put some weird looking boxes next to the title aswell.
Can anyone give me a way around this?
Is it also possible to have the title displayed permanently ? I am currently using a batch file to display a mosaic of 9 streams and have the following in it:
Thanks for any help you can offer
I was wondering if its possible to have the title of a file when displayed to be on separate lines?
I have the below play list
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/" xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/">
<title>Playlist</title>
<trackList>
<track>
<location>udp://@239.25.0.1:1234</location>
<title>Al Kass Anevia Box 2 7w Nilesat 101</title>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:id>0</vlc:id>
<vlc:option>udp-caching=300</vlc:option>
</extension>
</track>
</trackList>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:item tid="0" />
</extension>
</playlist>
Al Kass
Anevia Box 2
7w Nilesat 101
instead of all on one line
I tried the following:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/" xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/">
<title>Playlist</title>
<trackList>
<track>
<location>udp://@239.25.0.1:1234</location>
<title>
Al Kass
Anevia Box 2
7w Nilesat 101
</title>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:id>0</vlc:id>
<vlc:option>udp-caching=300</vlc:option>
</extension>
</track>
</trackList>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:item tid="0" />
</extension>
</playlist>
Can anyone give me a way around this?
Is it also possible to have the title displayed permanently ? I am currently using a batch file to display a mosaic of 9 streams and have the following in it:
Code: Select all
--video-title-timeout=2147483647
Thanks for any help you can offer