I would like to preform video processing on android using FFMpeg. I successfull build .so libraries and link it to my NDK project but now I realy dont know what to do next. I cant find any example of how to e.g. crop video or rotate it from NDK. I found many examples of ffmpeg command line tool like:
ffmpeg -i in.mp4 -filter:v "crop=out_w:out_h:x:y" out.mp4
but none of them is referencing to C code. Is this possible to do something like example above in NDK C code? Where can I find FFMpeg examples for beginers? Is this possible to invoke ffmpeg command line tool from android app?