Using LibVLC, I successfully added a VLC player to an Android app. However, I am not sure whether it is possible to apply video filters to a VLC player using LibVLC. Based on questions such as this, I suspect it might not be built-in for any filters, though I am not sure.
Currently, I am attempting to pass in the video filter commands in the playMRL
function, though I am simply receiving an unfiltered video. Below is the relevant code:
String videoOptions[] = {"--video-filter=invert"};
this.libVLC.playMRL("http://www.sample-videos.com/video/mp4/240/big_buck_bunny_240p_1mb.mp4", videoOptions);
Thanks.