Search found 29 matches

Go to advanced search

by cctvcam
09 Mar 2011 17:19
Forum: General VLC media player Troubleshooting
Topic: How to create a thumbnail from a video - final solution (?)
Replies: 14
Views: 12834

Re: How to create a thumbnail from a video - final solution

Does anyone know what the updated cmdline is for vlc 1.1.3 as the above don't seem to work. I think the -V is obsolete?
by cctvcam
10 Nov 2010 14:51
Forum: VLC media player for Windows Troubleshooting
Topic: NT service dependancies
Replies: 1
Views: 204

Re: NT service dependancies

Surely someone must know the answer to this?
by cctvcam
05 Nov 2010 11:57
Forum: VLC media player for Windows Troubleshooting
Topic: NT service dependancies
Replies: 1
Views: 204

NT service dependancies

I am using VLC installed as a service, which works fine, however upon a reboot the service appears to die or fail to start. I am assuming this is due to the service not having the correct dependancies setup on other services. Does any know which services vlc depends on so I can set this up manually ...
by cctvcam
15 Sep 2010 11:18
Forum: Web and scripting
Topic: VLC embedded to HTML in IE8?
Replies: 18
Views: 14086

Re: VLC embedded to HTML in IE8?

Hi, I agree the docs aren't great, but I have had what you are trying to do working using the following code. var options = new Array(":aspect-ratio=4:3", "--rtsp-tcp", ":no-video-title-show"); try { var id = vlc.playlist.add("rtsp://xxx.xxx.xxx.xxx:554/mpeg4/media...
by cctvcam
15 Sep 2010 11:02
Forum: General VLC media player Troubleshooting
Topic: RTSP handshaking delay
Replies: 3
Views: 621

Re: RTSP handshaking delay

thanks for the reply, but why udp from vlc to server cause cause a delay through an open firewall/network rather than on a local subnet?
by cctvcam
14 Sep 2010 21:06
Forum: Web and scripting
Topic: VLC plugin 1.1.3/4 crashes Firefox
Replies: 2
Views: 1673

Re: VLC plugin 1.1.3/4 crashes Firefox

yes I also experienced this behaviour. R U creating the <embed> tag manually in the page? Have you tried using the VLCObject library from http://www.revolunet.com/labo/code/VLCobject As this has some clean up code which seems to destory the player better than just loading another page. I am just swi...
by cctvcam
14 Sep 2010 11:56
Forum: General VLC media player Troubleshooting
Topic: RTSP handshaking delay
Replies: 3
Views: 621

RTSP handshaking delay

I am using VLC to access an RTSP stream over the network. When I connect from a client via a firewall that has all ports open from client -> server I experience a startup delay of 12 sec. If I try the same from a client on the same subnet then the delay is only 1sec. Monitoring the firewall I can se...
by cctvcam
03 Sep 2010 16:34
Forum: Web and scripting
Topic: properties and methods of VLC ActiveX v2
Replies: 5
Views: 6303

Re: properties and methods of VLC ActiveX v2

yes you can give an http link. the second param is just a name, can be whatever you like.

If you are unsure if the http link works in vlc. use the main vlc player application and select file open network stream and enter the http link here.
by cctvcam
02 Sep 2010 11:49
Forum: Web and scripting
Topic: properties and methods of VLC ActiveX v2
Replies: 5
Views: 6303

Re: properties and methods of VLC ActiveX v2

I have tried the activex in VS2005 from C# in a forms app. after adding a reference to the activeX under the COM tab and adding the control to the form from the toolbox, I used the following code to test the video and the logo methods. int id = axVLCPlugin21.playlist.add("rtsp://172.16.100.181:...
by cctvcam
01 Sep 2010 17:56
Forum: Web and scripting
Topic: Fullscreen on VLC 1.1.0
Replies: 15
Views: 3806

Re: Fullscreen on VLC 1.1.0

I found this in the bug tracker, which is really disappointing. Patch welcome. We have currently no maintainer for the ActiveX control. I now wish the ActiveX/plugin had not been available as now I have selected it for my project only to find that there is little chance of the bugs being fixed. I di...
by cctvcam
01 Sep 2010 16:02
Forum: Web and scripting
Topic: Mouse click & plugin
Replies: 13
Views: 2470

Re: Mouse click & plugin

As an update although I have this working in firefox, as soon as a video stream is played the click functionality stops working.
by cctvcam
01 Sep 2010 15:58
Forum: Web and scripting
Topic: Documentation:WebPlugin & ActiveX Clarification
Replies: 7
Views: 1776

Re: Documentation:WebPlugin & ActiveX Clarification

I had a bit of trouble with the code sample in one of the above posts. what worked for IE and firefox for me. <!--[if IE]> <object id='vlc' classid='clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921' codebase="http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab" width="500&...
by cctvcam
01 Sep 2010 12:37
Forum: Web and scripting
Topic: Automatic Resize of embebbed VLC...
Replies: 7
Views: 6553

Re: Automatic Resize of embebbed VLC...

And it turns out that the solution was far more simple than I imagined, use the style attribute of the vlc object. Did you actually get this to work once the video had started. I have found that if the video has started although the player resizes the video is still the same size and is stuck in th...
by cctvcam
01 Sep 2010 10:02
Forum: Web and scripting
Topic: Fullscreen on VLC 1.1.0
Replies: 15
Views: 3806

Re: Fullscreen on VLC 1.1.0

I'd like to see this fixed ASAP too, is there anyway of getting this bugs priority bumped up?
by cctvcam
31 Aug 2010 11:58
Forum: Web and scripting
Topic: Mouse click & plugin
Replies: 13
Views: 2470

Re: Mouse click & plugin

I did not copy exactly (with typos) I have now changed to function OnVlcClick() { alert("click event"); } var vlc = document.getElementById('vlc'); vlc.onclick = OnVlcClick; This is run in the boby onload method, with the vlc object declared as <object id='vlc' classid='clsid:9BE31822-FDAD...
by cctvcam
26 Aug 2010 11:13
Forum: VLC media player for Windows Troubleshooting
Topic: Installing vlc as service
Replies: 3
Views: 3851

Re: Installing vlc as service

I think you need to add this parameter vlc://quit to the end of the vlc command line when installing to stop the extra process running.i.e. vlc -I ntservice --ntservice-install --ntservice-name="Musicbox" --ntservice-options="--no-qt-privacy-ask --no-qt-error-dialogs --loop D:\musicbo...
by cctvcam
26 Aug 2010 10:57
Forum: Web and scripting
Topic: Mouse click & plugin
Replies: 13
Views: 2470

Re: Mouse click & plugin

The code I have is var vlc = document.getElementById('vlc'); vlc.onclick = function() { alert("here"); }; The alert is displayed in firefox, using the plugin, but not in InternetExplorer using the activeX control. Visual studio warns that the event attribute is not support on the object ta...
by cctvcam
25 Aug 2010 17:44
Forum: Web and scripting
Topic: Styling the VLC Video Embed
Replies: 5
Views: 1790

Re: Styling the VLC Video Embed

Can you give an example of doing this in FF, as I could not get this to work using the z-Index.
by cctvcam
25 Aug 2010 10:49
Forum: Web and scripting
Topic: Mouse click & plugin
Replies: 13
Views: 2470

Re: Mouse click & plugin

Can someone please tell me how to do this in IE as I have tried this code and it does not work?

thanks
by cctvcam
25 Aug 2010 10:13
Forum: Web and scripting
Topic: z-index for VLC plugin display window
Replies: 8
Views: 3516

Re: z-index for VLC plugin display window

I understand that I can't do anything to work around this. This is a real pain as I wanted to provide html controls overlaid on the video control. Is there a way to fix it in the VLC code with z-index in the (directdraw/show?) code?
by cctvcam
24 Aug 2010 16:48
Forum: Web and scripting
Topic: z-index for VLC plugin display window
Replies: 8
Views: 3516

Re: z-index for VLC plugin display window

Did anyone find a way of getting this to work in FF and IE? code sample please.
by cctvcam
24 Aug 2010 13:28
Forum: Web and scripting
Topic: Documentation:WebPlugin & ActiveX Clarification
Replies: 7
Views: 1776

Re: Documentation:WebPlugin & ActiveX Clarification

I finally found that the 9BE31822-FDAD-461B-AD51-BE1D1C159921 clsid works to show the current api for the activex. I did reinstall with 1.1.3 so I don't know if I had a local issue.
by cctvcam
23 Aug 2010 10:56
Forum: Web and scripting
Topic: Documentation:WebPlugin & ActiveX Clarification
Replies: 7
Views: 1776

Re: Documentation:WebPlugin & ActiveX Clarification

ok thanks for the code for multiple browsers, which version of the api do you use with this in IE?

if its the new version can you show me how you access it?
by cctvcam
21 Aug 2010 19:19
Forum: VLC media player for Windows Troubleshooting
Topic: Windows Service and logo filters
Replies: 3
Views: 328

Re: Windows Service and logo filters

C:\Program Files\VideoLAN\VLC>vlc.exe -I ntservice --ntservice-install --ntservice-name=VLC-Service --ntservice-extraintf=http --ntservice-options="--no-qt-privacy-ask --no-qt-error-dialogs" --sub-filter "logo{file=ff-logo-small.png,transparency=128}" vlc://quit the file is in th...
by cctvcam
19 Aug 2010 13:47
Forum: VLC media player for Windows Troubleshooting
Topic: Windows Service and logo filters
Replies: 3
Views: 328

Windows Service and logo filters

I have tried to do streaming using VLC as a windows service with the logo filter without success. I have tried with the --sub-filter and without. Can someone confirm if this is possible with a streaming service and how to do it. I assume only local files work and not file urls.

Go to advanced search