Thank you for help, but It doesn't work.
Code: Select all
const char * const vlc_args[] ={
"-vvv",
"-I","dummy","--ignore-config",
"--plugin-path=C:\\Program Files\\VideoLAN\\VLC\\plugins\\"
};
libvlc_instance_t * inst;
inst = libvlc_new(sizeof(vlc_args) / sizeof(*vlc_args), vlc_args);
libvlc_vlm_add_broadcast(inst,
"Test", "k:\samples\bbb24p_00.ts", "#udp{dst=127.0.0.1:1234}",0,NULL, true, true);
libvlc_vlm_play_media(inst,"Test");
I try to receive stream, nothing happens. Client arguments:
vlc -vvv udp://127.0.0.1@:1234