I'm trying to add a logo over a video in Android, I tried to do:
String[] options = {"--sub-filter=logo" ,"--logo-file=/mnt/sdcard/video.png"};
playMRL(mLibVlcInstance, mrl, options);
but it did not add a logo, in Windows it works:
vlc --sub-filter=logo --logo-file=video.png movie.mp4
Does anybody have any idea how to run with these options in Android?