ffmpeg-android-java icon indicating copy to clipboard operation
ffmpeg-android-java copied to clipboard

Android java library for FFmpeg binary compiled using https://github.com/writingminds/ffmpeg-android

Results 102 ffmpeg-android-java issues
Sort by recently updated
recently updated
newest added

i tried below code but not works for adding audio. `progressbarfilter.setVisibility(View.VISIBLE); String inputis = sharedPreferences.getString("actuallinkis", ""); String inputaudiois = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + Environment.DIRECTORY_MUSIC +"audio.mp3"; motion_destinationpath = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator...

hi, i have added library into gradle and also call load loadFFMpegBinary() function which is correctly loaded , now i am using below code, `private void execFFmpegBinary(final String[] command) {...

Hi how can I split videos into parts using ffmpeg. Thank you

I have faced issue while adding music with my video file. onFailure() :- CANNOT LINK EXECUTABLE "/data/user/0/com.obs.marveleditor/files/ffmpeg": "/data/user/0/com.obs.marveleditor/files/ffmpeg" has text relocations (https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#Text-Relocations-Enforced-for-API-level-23)

Hi, I am compressing .mp4 (3 minutes video) of size 368.2MB using following command: ffmpeg -y -i /storage/emulated/0/DCIM/Camera/20151119_200558.mp4 -strict experimental -vcodec libx264 -r 30 -acodec aac -ar 44100 -ac 1...

String[] commondForCropingVideoFast = {"-i", "/storage/emulated/0/Movies/sample.mp4", "-vf", "crop=" + 1080 + ":" + 1600 + ":" + 0 + ":" + 350, "-strict", "experimental", "-vcodec", "libx264", "-preset", "ultrafast", "/storage/emulated/0/Movies/cropped.mp4"};

i have error "error=13, Permission denied" while trying to run Ffmpeg in android 10 (Q). java.io.IOException: Cannot run program "/data/user/0/com.package.name/files/ffmpeg": error=13, Permission denied at java.lang.ProcessBuilder.start(ProcessBuilder.java:1050) at java.lang.Runtime.exec(Runtime.java:698) at java.lang.Runtime.exec(Runtime.java:563) at...

I was generated video successfully from local images, but facing problem with arraylist to video generation. is there any way to generate video from arraylist at a runtime in ffmpeg.

Hi, Thanks for the lib. It is very useful to my project. But if I take 2 min video mean it will take more than 5 min to compress. I...

enhancement