Saving VLC stream to mp4 Configuration

3.1k Views Asked by At

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

1

There are 1 best solutions below

4
On

my case:

string s = "rtsp://address:554/stream";
VlcControl vlcControl = null;
Thread thread = new Thread(() => { vlcControl = new VlcControl(); });
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
thread.Join();
vlcControl.MediaPlayer.VlcLibDirectoryNeeded += OnVlcControlNeedsLibDirectory;
vlcControl.MediaPlayer.EndInit(); //Important
prms = prms.Concat(new String[] { ":sout=#transcode{vcodec=mp4v,acodec=none,vb=128,deinterlace}:std{access=file,mux=mp4,dst=" + pathNameFile + "_" + i++ + ".mp4}"}).ToArray();
vlcControl.MediaPlayer.Play(new Uri(s), prms);