i want to make a little program with "AUTOIT" and i have a problem with the dummy mode of VLC.
i want to transcode and save to a file, my webcam streaming, but in dummy mode (interface and previsualisation HIDDEN).
It's works perfectly without the dummy mode (=> $vlc_quietmode).
But it's doesn't work when dummy mode is activate.
Code: Select all
$vlc_quietmode = " -I dummy -V dummy --dummy-quiet "
$vlcPID = Run($vlcpath & $vlc_quietmode & ' dshow:// --dshow-vdev="" --dshow-size="640x480" --dshow-fps="10" --sout="#transcode{vcodec=h264,vb=192,scale=1,acodec=mpga,ab=64,channels=2,samplerate=44100}:duplicate{dst=std{access=file,mux=mp4,dst='''& $savedir &'''}}"')
Plz help me...
Thx.