If I use:
Code: Select all
vlc -I rc --cli-host=localhost:9082 sample.mp4
but in libVLC, if I use rc in args, rc not work:
Code: Select all
const char * const vlc_args[] = {
"-I","rc",
"--cli-host=localhost:9082"
}
Code: Select all
libvlc_add_intf(m_vlc,"rc");
Other commands like "fullscreen" return:
All this commands work fine in vlc with commandline.Error in `fullscreen' lua/intf/modules/common.lua:16: VLC lua error in file libs/video.c line 51 (function vlclua_fullscreen)
How I use rc client in libVLC with all CLI commands ?
Thanks!
(vlc version 2.1.6 Rincewind on Ubuntu 14.04 LTS )