ffmpeg-android-java
ffmpeg-android-java copied to clipboard
Android java library for FFmpeg binary compiled using https://github.com/writingminds/ffmpeg-android
Hi, I see adding this library increasing app size 21mb. How can I exclude few component in the library to reduce the size? Any help would be appreciated. Thanks Binay
How to make the audio compression ultrafast? It is now taking more than 2 minutes for converting an audio around 2mb in size. The command i'm using for execution of...
Is there a way to normalize an audio file?
in samsung device merge audio video that time not any response.. in success or in failed. no any one give response..
merge audio with video and volume customization I am trying to merge audio and video using following command String[] complexCommand = {"-i",STORE_DIRECTORY,"-i",yourRealPath,"-filter_complex","[0:a]aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume=0.5[a1];[1:a]aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume=0.8[a2];[a1][a2]amerge,pan=stereo:c0
I tried to compress the 101 mb video using the bleow code.But its not compressing it.The compressed video is of 102 mb. private void versionFFmpeg() { FFmpeg.getInstance(this).execute(new String[]{ "-y","-i" ,"/storage/emulated/0/big_buck_bunny.mp4","-crf",...
I am executing the following command to merge two audio file: ffmpeg -i /storage/emulated/0/AudioRecorder/1519635839069.mp3 -i /storage/emulated/0/AudioRecorder/SampleAudio_0.4mb.mp3 -filter_complex amix=inputs=2:duration=first:dropout_transition=2 /storage/emulated/0/AudioRecorder/1519710922139.mp3 but I am getting the following error ffmpeg version n3.0.1 Copyright...
When i run a command with **ffmpeg**._execute_() inside the FFmpegExecuteResponseHandler _onProgress_() method when i call **ffmpeg**._isFFmpegCommandRunning_() it's returning false. Also _killRunningProcesses_() is not working, because when i execute and run...
I installed the latest version of this app on my device running android oreo (8.1) When i execute the command it says "permission denied" at end (while writing to External...
As the title says, I wanna estimate the time for execution. I was thinking about using the fps, bitrate and other params but I'm not sure whats the right way....