it´s possible I´m asking a nonsense but I´m a bit noob... I´m trying to write native code in Android to change the resolution of a video using a FFmpeg. I compiled the library of FFmpeg and I added it to my project correctly after used the NDK. But now I want to execute this FFmpeg command shell:
ffmpeg -i input.mp4 -s 480x320 output.mp4
I need to execute it in a C file using the JNI but I don´t know how to call the equivalent methods of the command...
I think I´m having a similar problem than here
Thanks for help!!