-
android ffmpeg demo2下载
资源介绍
此代码是在android ffmpeg de的基础上增加新的功能模块(参考****雷霄骅大神的博客写的)
实现ffmpeg
public native String urlprotocolinfo();
public native String avformatinfo();
public native String avcodecinfo();
public native String avfilterinfo();
public native String configurationinfo();
//视频数据解码成YUV像素数据 测试通过
public native int decode(String inputurl, String outputurl);
//将视频文件以流媒体的形式推送到服务器 未测试
public native int stream(String inputurl, String outputurl);
//转码 MP4转wmv命令行格式 未实现
public native int ffmpegcore(int argc,String[] argv);
public native int H264DecoderInit(int width, int height);
public native int H264DecoderRelease();
public native int H264Decode(byte[] in, int insize, byte[] out);
//获取版本
public native int GetFFmpegVersion();
本人使用win8下安装vmware workstation Ubuntu kylin 14.04 android-ndk64-r10-linux-x86_64.tar.bz2 ffmpeg-2.8.tar.bz2