Search found 18 matches

Go to advanced search

by usbhell
04 May 2006 21:45
Forum: General VLC media player Troubleshooting
Topic: VLC media player 0.8.5-test4 beta release (was test3)
Replies: 83
Views: 156923

Apologies if this is a known problem but I never noticed it before. When I play TS files I've recorded off the tv with multiple aspect ratios 4:3 & 16:9. VLC switches between them fine if I just play the whole file. If i use the slider to skip through the file the aspect ratio doesn't change. So...
by usbhell
03 May 2006 11:46
Forum: General VLC media player Troubleshooting
Topic: VLC media player 0.8.5-test4 beta release (was test3)
Replies: 83
Views: 156923

Just tried vlc-0.8.5-test4 and found a bug with the Activex plugin. The volume property still only returns the value it has been set to and not what the actual volume level is, if it has been changed with the volume hotkeys.

cheers
by usbhell
27 Apr 2006 17:21
Forum: Web and scripting
Topic: Visualizations working with the Activex plugin ?
Replies: 9
Views: 8401

I wasn't logged on there, but that was me....
by usbhell
24 Apr 2006 17:57
Forum: VLC media player for Windows Troubleshooting
Topic: Snapshot image contains vertical green lines
Replies: 1
Views: 742

I get the same thing on my crappy old laptop, I find changing the snapshot format in Preferences/Video from png to jpg sorts it out.
by usbhell
22 Apr 2006 13:20
Forum: VLC media player for Windows Troubleshooting
Topic: Problems with playback of some Polsat Channels (DVB)
Replies: 2
Views: 2115

The same problem also exists for almost all channels off Hispasat (30 West), although they do open in VLC every once in a while. I've tried to upload a small sample dump of "Sky News" to the incoming folder of ftp.videolan.org, but I dont know if it worked, you can also find it here http:/...
by usbhell
21 Apr 2006 20:02
Forum: Web and scripting
Topic: Changing Audio Tracks smoothly using the ActiveX Control
Replies: 2
Views: 2378

in vb you can cycle through the tracks with something like hotkey = VLCPlugin1.getVariable("key-audio-track") VLCPlugin1.setVariable "key-pressed", hotkey or select a track using the option below ":audio-track=1" I don't know how to select a particular track without ano...
by usbhell
20 Apr 2006 10:56
Forum: General VLC media player Troubleshooting
Topic: VLC media player 0.8.5-test2 beta release
Replies: 131
Views: 202674

I just noticed with the Activex plugin that the volume property no longer returns the correct value, something working okay in 8.4a. You can set the value correctly but if you subsequently use the hot keys (Ctrl up/down) the value returned from the volume property doesn't change. Thanks. ive tried t...
by usbhell
20 Apr 2006 09:41
Forum: Web and scripting
Topic: Looping video content
Replies: 1
Views: 1970

That seems to be working now, with the latest 8.5 test versions I've tried.
by usbhell
30 Mar 2006 10:47
Forum: Web and scripting
Topic: Record a live stream to disk using VLC ActiveX
Replies: 3
Views: 4926

I think you just need something like this, but change the output string to your specific needs, its the dst=display that makes it play on the screen too

var options = new Array(":input-repeat=0",":sout=#duplicate{dst=display,dst=std{access=file,mux=ps,url=movie.mpg}}");
by usbhell
11 Mar 2006 09:59
Forum: VLC media player for Windows Troubleshooting
Topic: how to make screen shot (print screen) in VLC ?
Replies: 11
Views: 8049

If I want to use print screen I just change the output module to open gl (settings->preferences->video->output modules and tick advanced). I think you will always get a black screen with directx.
by usbhell
03 Mar 2006 14:20
Forum: Web and scripting
Topic: ActiveX and Stream Recording
Replies: 7
Views: 6612

I think its something like this, you need to make it an array of strings I believe.
Dim Vopt() As Variant
Vopt() = Array(":sout=#transcode vcodec=mp4v,vb=1024,scale=1}:duplicate{dst=std access=file,mux=mov,url=video.mov}}")
by usbhell
03 Mar 2006 10:49
Forum: Web and scripting
Topic: ActiveX and Stream Recording
Replies: 7
Views: 6612

Walter's suggestion is the best way to get the string I think (file->open file, tick the stream output box and click on settings).

2 of my favourites are

Code: Select all

:sout=#duplicate{dst=display,dst=std access=file,mux=ts,url=movie.ts}}
and

Code: Select all

:demux=dump
by usbhell
20 Feb 2006 10:32
Forum: VLC media player for Windows Troubleshooting
Topic: Problem with URL format for streaming
Replies: 1
Views: 722

This seems to be a Windows Media Audio Redirector (.wax) file. I don't know about VLC but you need to google for something that handles these I suppose
by usbhell
04 Feb 2006 10:41
Forum: Web and scripting
Topic: ActiveX + Delphi seem not to work as a Streaming Server !
Replies: 2
Views: 2282

You need to put the sout bit were you currently have null in vb you'd do something like below, I think..... options() = Array(":sout=#duplicate{dst=display,dst=std access=udp,mux=ts,url=localhost:1234}}") VLCPlugin1.addTarget "'F:\Cinema\mpg\vcdfastaction.mpeg", options, VLCPlayL...
by usbhell
03 Feb 2006 17:36
Forum: Web and scripting
Topic: Snapshot with activeX
Replies: 2
Views: 3365

one way to do it in vb6 would be,

Code: Select all

hotkey = VLCPlugin1.getVariable("key-snapshot") VLCPlugin1.setVariable "key-pressed", hotkey
these seem to be saved in your My Pictures folder under Windows XP as png's
by usbhell
21 Jan 2006 10:41
Forum: Web and scripting
Topic: Browser plugin - set deinterlace problem
Replies: 4
Views: 4209

I don't know exactly how you'd do it, but in vb I think you need to specify the --vout-filter as well to be deinterlace Dim options() As Variant options = Array(":vout-filter=deinterlace", ":deinterlace-mode=bob") VLCPlugin1.addTarget App.Path & "/blah.ts", options,...
by usbhell
14 Jan 2006 10:40
Forum: Web and scripting
Topic: Visualizations working with the Activex plugin ?
Replies: 9
Views: 8401

Thanks for the input; I gave it a go but without success. I’m not giving up yet though, I can see the control can handle them, I just don’t know how to turn them on at runtime.
by usbhell
13 Jan 2006 15:18
Forum: Web and scripting
Topic: Visualizations working with the Activex plugin ?
Replies: 9
Views: 8401

Visualizations working with the Activex plugin ?

Hello, I was wondering if anyone had managed to get visualizations working with the Activex plugin, using addTarget If I use, on the command line vlc.exe audio.mp3 --audio-visual visual they work fine in the regular VLC player if under Settings->Preferences->Audio I set Audio visualisations to Visua...

Go to advanced search