I would like to realize an application in C that emulate the command line of VLC. I have already tried with system("command") call and it work well, but it requires VLC installed. I want a stand alone application that can streaming a video/image over RTSP with the following command...
Code: Select all
vlc -vv campione2.jpg --fake-duration 30000 --repeat --loop --sout '#transcode{vcodec=H263p,vb=800,width=352,height=288}:duplicate{dst=display,dst=rtp{sdp=rtsp://10.36.1.23:8080/test.sdp},dst=rtp{dst=192.168.0.4,port=1234,mux=ts}}' vlc://quit
Thank