Does anybody know that is the format of parameter "ppsz_options" in function libvlc_vlm_add_vod ?
I have set up like this:
Code: Select all
const char * const vlm_args[] = {
"--no-sout-rtp-sap",
"--no-sout-standard-sap",
"--ttl=1",
"--rtsp-session-timeout=-1",
"--sout-keep"
};
libvlc_vlm_add_vod(m_pLibvlcInst, name, (LPCTSTR)strInput,
sizeof(vlm_args)/ sizeof(vlm_args[0]), vlm_args, false, NULL);
Any idea ? Thanks again.