android 视频转码

来源:互联网 发布:如何在淘宝做分销商 编辑:程序博客网 时间:2024/05/21 13:58
package mozat.mchatcore.videotranslate;import android.util.Log;public class VideoTranslateJniInterface {private static final String TAG = VideoTranslateJniInterface.class.getSimpleName();static {Log.d(TAG, "before load videotranslate library");System.loadLibrary("x264");System.loadLibrary("ffmpeg");System.loadLibrary("videotranslate");Log.i(TAG, "after load videotranslate library");setDebugSetting(1);}static native void setDebugSetting(int isShowLibvideotranslateLog);static native void startTranslate(String sourceVideoFile, String targetVideoFile, long timeLenLimit);static native void startCutVideo(String sourceVideoFile, String targetVideoFile, long timeLenLimit);static boolean encodeStepCallBack(boolean isOver, boolean isCanceled, long currentTimeLen, long limitTimeLen, long totalTimeLen) {if (VideoTranslateTool.mOnTranslateListener != null) {VideoTranslateTool.mOnTranslateListener.encodeStepCallBack(isOver, isCanceled, currentTimeLen, limitTimeLen, totalTimeLen);}return true;}static native long[] getVideoInfo(String sourceName);static native void cancelTranscode();}

下载地址  http://download.csdn.net/detail/xiechao1986/6276969
原创粉丝点击