I never work with VLC visual music but ...
I just can tell U to check onemore time your script to see if do not put the same AxVLC plugin name twice...
It appends some times... We are not perfect, me first
Or send us part of codes to see where U call Ur visual
Good luck
Infact there's a problem to set options parameters (:sout). In 084 version I can specify this : string[] options = new string[2]; options[0]=":sout#transcode ... :duplicate ..." myAVLC.addtarget("",options, ...) and leave options[1] blank 'cause activeX don't care and set Transco...
Hi everybody I made an C# .net 2 app with 084 activeX that works pretty good but not with all computer (not all webcams in fact). I tried to use a special kind of cam that works with 085 player. But my problem is that I got an error with 085 activeX I don't have with 084 in the addtarget property. I...
I got it in windev: (sans retransmission, mais on peut en changeant les param de options) options est un tableau de 2 chaînes options[1] = ":sout" options[2] = ":duplicate" usermode est un entier = 9 // Correspond au playlist mode AXVLCPLUG>>playlistClear() AXVLCPLUG>>addTarget(&...
Man, I got solution !!! In your options OBJECT, you specify : Citation: string[] options = new string[1]; but you have 2 options parameters !!! ":sout=#transcode{vcodec=mp4v,vb=512,scale=1}:duplicate{dst=std{access=udp,mux=ts,url=192.168.1.9:1234}}"; so you have to specify string[] options...
by "constant in dll" I mean that In windev i have an activex browser which gives me all functions of activeX and Constant (windev words) with differents names and values.
Constant is : VLCPlaylistMode
Value is like : VLCPlayListReplaceAndGo
In fact when I use "AXVLC.VLCPlaylistMode.VLCPlayListReplaceAndGo" in my windev function, it doesn't work 'cause Windev doesn't recognize this object. I thought that I can call this ENUMeration ( ;-) ) with API() command to access to the .dll library but... it calls only functions. I have ...
So, i make it in C# : private void button1_Click(object sender, System.EventArgs e) { string[] options = new String[1]; string thisMRL = @"D:\evolution.avi"; this.axVLCPlugin1.addTarget(thisMRL,options,AXVLC.VLCPlaylistMode.VLCPlayListReplaceAndGo,0); this.axVLCPlugin1.play(); } and I am n...
Hi everybody I just discovered a few streaming possibilities of VLC ... Damned !!!! What a beautiful work dudes ! I am developping a soft that can take advantage from vlc activeX. And that's my prob.... Soft is developed with Windev .... (no comment ;-) )Every thing work fine but when I try to addTa...
I'm using VLC activeX in a W32 software and I want to snapshot the streaming video. Is it possible with a command line on the activeX? To save it in JPG or PNG, doesn't matter...