Hi all,
I am using libvlc into my application , i have been able to achieve , get the rtsp stream and display it and also save as avi file on harddisk
m_smedia = libvlc_media_new_location(m_pVLCInstance,"rtsp://192.60.104.137/live.sdp");
libvlc_media_add_option(m_smedia,":sout=#transcode{vcodec=h264,vb=800,acodec=none,fps=15}");
libvlc_media_add_option(m_smedia,":sout=#duplicate{dst=display,dst=std{access=file,mux=ps,dst=d:\\Test.avi}}");
libvlc_media_player_set_media(m_pMediaPlayer,m_smedia);
I want to get the jpg files (save them on harddisk)and not the avi file , tried but there is not much information on this , need help.
Thanks,
san_vlc