I am using a VLC component in my WPF application with C# and I adding this option to VLC:
Options = @":sout=#duplicate{dst=display,dst=std{access=file,mux=ts,dst=" + outputFileName + "}}";
With this option I am able to save the stream to mpg.
I want to save the stream to mp4 and I tried:
Options = @":sout=#duplicate{dst=display,dst=std{access=file,mux=mp4,dst=" + outputFileName + "}}";
and
Options = @":sout=#transcode{vcodec=theo,vb=800, scale=1,acodec=flac,ab=128,channels=2,samplerate=44100}:std{access=file,mux=ogg,dst=" + outputFileName + "}}";
but this two option the VLC does not work at all.
What option should I used for sout if I want to save to mp4
Thank you in advance
my case: