This is AS version
Eclipse version, please refer to Old Eclipse Version
execute ffmpeg commands as a shared librar, you can try example.apk
[Note]: This library may not support all the codecs you want, for example, h264.
add dependency in your build.gradle
dependencies {
compile 'cn.dxjia:ffmpegexecutor:0.1.7'
}
import package
import cn.dxjia.ffmpeg.library.FFmpegNativeHelper;
run command
FFmpegNativeHelper.runCommand("ffmpeg -version");
NOTE:
- now, runCommand() will return some strings as result, not very friendly;
- this library modified some ffmpeg source code, invasion is relatively strong.
If you want to compile this library by yourself, you can do that as follow steps.
Build jni manually
cd library/jni
chmod a+x build.sh
. build.sh
Make sure you have add your NDK path to your PC Enviroment.
Open a CMD terminal
cd library\jni
build.cmd
Android Studio -> Open Existing Project
modify code & build project
NOTE: Every time you changed the jni source code, you need to build it manually before building the project from Android Studio.
Any issues and PRs are welcome.
Copyright (c) 2015 dxjia
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.