Hi,
I'm using C# for calling VLC and it works fine, but it doesn't execute the transcode part.
This is what I do:
axVLCPlugin1.addTarget("http://127.0.0.1:1234 :sout=#transcode{vcodec=mp4v,vb=1024,scale=1}:duplicate{dst=display,dst=std{access=file,mux=mp4,dst=\"C:\\test.mp4\"}}", null, AXVLC.VLCPlaylistMode.VLCPlayListInsert, 0);
axVLCPlugin1.play();
When I do that, it will connect and I can see the video, but it's not saved to the file.
However, if I run VLC from the command line like this:
vlc -vvv http://127.0.0.1:1234 :sout=#transcode{vcodec=mp4v,vb=1024,scale=1}:duplicate{dst=display,dst=std{access=file,mux=mp4,dst="C:\test.mp4"}}
It works fine, so my MRL is correct.
Any ideas what I'm missing?
Thanks