Hi,
I wanted to know is the any sample code or steps to do a stream/broadcast by using LibVCL ver 1.0.0?
I do search all the threads, did not found any clear sample for it. All of the samples used AddTarget for
ActiveX method.
Currently I used
a) libvlc_media_new
b) libvlc_media_player_new_from_media
c) libvlc_media_player_set_hwnd
d) libvlc_media_player_play
I was able to play a stream video by calling 'udp://:1234' via libvlc_media_new
How to sepecify the parameter like
:sout=#transcode{vcodec=h264,vb=800,scale=1,acodec=mp4a,ab=128,channels=2,samplerate=22500}:
duplicate{dst=std{access=udp,mux=ts,dst=127.0.0.1:1234},dst=display}
Should I call libvlc_media_add_option before libvlc_media_player_new_from_media or what function?
TQ.