Configured FFmpeg4Android by refer this tutorial
http://androidwarzone.blogspot.in/2011/12/ffmpeg4android.html
Using ffmpeg , converted .mp4 videos to MPEG-4 H.263 . but it is not working web .
How to convert .mp4 videos to MPEG-4 AVC(Advanced Video Codec) format , using ffmpeg4android is it possible ?
FFmpeg Command
String[] complexCommand={"ffmpeg","-y" , "-i", "/sdcard/videokit/in.mp4","-strict","experimental","-s", "160x120","-vcodec", "libx264", "-vprofile", "high", "-preset", "slow", "-b:v", "500k" ,"-maxrate" ,"500k" ,"-bufsize" ,"1000k" ,"-vf", "scale=-1:480","-threads", "0", "-acodec", "libvo_aacenc" ,"-b:a", "128k", "/sdcard/videokit/out1.mp4"};
Error
W/ffmpeg4android: Command validation detected libx264 use W/ffmpeg4android: Make sure you use the extra libs that support libx264 W/ffmpeg4android: Note that you will have to target api 22 or below in your Manifest when using libx264
Note :
To set Extra Libraries tried these.
1.Copy the x86 files to ffmpeg4android_lib/libs
2.Copy the x86 files to ffmpeg4android_lib/jniLibs .
and add the abiFilter "x86" defaultConfig
still error not resolved.
How to set Extra Libraries ?
--
http://androidwarzone.blogspot.in/2011/12/ffmpeg4android.html