Hi.
I'm trying to simultaneously view and record video from the web-cam. The following command line parameters work great:
vlc.exe dshow:// :dshow-vdev="" :dshow-adev="none" :dshow-size="" :sout=#transcode{vcodec=DIV3,vb=1024,scale=1}:duplicate{dst=display,dst=std{access=file,mux=ogg,dst="C:\test.ogg"}}
Problem is, that I don't know how to translate them to ActiveX correctly. I tried various options, and only reached this one so far:
(VB6)
vlcLive.addTarget "dshow:// :dshow-vdev=""""", Array(":dshow-adev=""none"" :dshow-size="""" :sout=#transcode{vcodec=DIV3,vb=1024,scale=1} :duplicate{dst=display,dst=std{access=file,mux=ogg,dst=""C:\test.ogg""}}"), VLCPlayListReplaceAndGo, -666
This one displays the ActiveX with web-cam video, but doesn't produce any recordings.
Am I doing something incorrect?
Thanks in advance.