###ffmpeg and ffprobe android command line tools
- ffmpeg日志回调接口
- ffmpeg增加监听百分比进度(具体看demo)
ffmpeg需要单例运行
如:转码mp4 CPU利用率80%以上 其它视频不低于60%间波动 (冬天暖手宝)
- ffprobe 只实现了json回调
- ffprobe线程和ffmpeg线程独立运行
- Gradle
compile 'com.yyl.ffmpeg:ffmpeg_cmd:1.2.0'
目前支持的库 armeabi-v7a
ndk {
abiFilters "armeabi-v7a"
}
//ffprobe -v error -print_format json -select_streams v:0 -show_entries stream=width,height,index inputFile
String cmd = "ffprobe -v quiet -print_format json -show_format -i " +inputFile;
String json = FFmpegUtils.getInstance().execffprobe(cmd);
String cmd = "ffmpeg -h"
int code = FFmpegUtils.getInstance().execffmpeg(cmd,callback);
####编译版本号官网2018-01-02最新版本ffmpeg和h264