[vlc] Embedded VLC Player - Video Title

Guy Perkins me at atdotmedotuk.me.uk
Thu Mar 25 03:30:46 CET 2010


Hi
 
I It looks like you are using AX v1, so.
Try
 
no-video-title-show
 
I use this in "options" though rather than a param declaration, but that
would mean sticking the object in & then adding the udp in a function
call with options. (but, i've just cheched replacing my DVB with your
UDP & it wont show, but hopefully the code below "may" help steer you).
I'm not a VLC dev though, just a user.
 
Code =
 
<OBJECT classid="clsid:E23FE9C6-778E-49D4-B537-38FCDE4887D8"
    codebase="\"axvlc.dll\"
 width="1022" 
 height="575" 
 id="vlc" events="True">
  <param name="ShowDisplay" value="True" />
  <param name="AutoLoop" value="true" />
  <param name="AutoPlay" value="True" />
  <param name="Volume" value="100">
</OBJECT> 
<script type="text/javascript">
 
var vlc = document.getElementById('vlc');
var options = new
Array("dvb-frequency=722167","dvb-bandwidth=8","program=4415","no-video-
title-show")
var targetURL ="dvb-t://";
var mode = "2"
var position = "0"
document.vlc.addTarget(targetURL, options, mode, position);
document.vlc.play();
</script>
 
 
-----Original Message-----
From: vlc-bounces at videolan.org [mailto:vlc-bounces at videolan.org] On
Behalf Of Dmitry Ofitserov
Sent: 24 March 2010 16:58
To: vlc at videolan.org
Subject: [vlc] Embedded VLC Player - Video Title



Hello,

We are using the following Web page to play the IPTV on the Web with the
embedded VLC player:

<html>
<head><title>Embedded VLC Player</title></head>
<body>
<OBJECT classid="clsid:E23FE9C6-778E-49D4-B537-38FCDE4887D8" 
codebase="c:\Program Files\VideoLAN\VLC\axvlc.dll"
width="1200" height="900" id="vlc" events="True"> 
<param name="Src" value="udp://@225.168.1.88:50688" /> 
<param name="ShowDisplay" value="True" />  
<param name="AutoPlay" value="True" /> 
</OBJECT> 
</body>
</html>

This page works fine, but when the video starts to play, it displays the
tilte "udp://@225.168.1.88:50688" for 5 sec at the bottom of the page.
Please advise how to disable this title or at least to change it to
something like "CNN." We tried the following options, which did not
work:

video-title="CNN"

video-title-timeout=0000

video-title-show=0

Please advise,
Dmitry
	


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.videolan.org/pipermail/vlc/attachments/20100325/e280c440/attachment.html>


More information about the vlc mailing list