├── .gitignore ├── LICENSE ├── README.md └── so ├── ffmpeg-with-x264 └── arm │ ├── libavcodec-57.so │ ├── libavdevice-57.so │ ├── libavfilter-6.so │ ├── libavformat-57.so │ ├── libavresample-3.so │ ├── libavutil-55.so │ ├── libpostproc-54.so │ ├── libswresample-2.so │ └── libswscale-4.so ├── ffmpeg └── arm │ ├── libavcodec-57.so │ ├── libavdevice-57.so │ ├── libavfilter-6.so │ ├── libavformat-57.so │ ├── libavresample-3.so │ ├── libavutil-55.so │ ├── libswresample-2.so │ └── libswscale-4.so └── x264 └── arm └── libx264-148.so /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/README.md -------------------------------------------------------------------------------- /so/ffmpeg-with-x264/arm/libavcodec-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg-with-x264/arm/libavcodec-57.so -------------------------------------------------------------------------------- /so/ffmpeg-with-x264/arm/libavdevice-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg-with-x264/arm/libavdevice-57.so -------------------------------------------------------------------------------- /so/ffmpeg-with-x264/arm/libavfilter-6.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg-with-x264/arm/libavfilter-6.so -------------------------------------------------------------------------------- /so/ffmpeg-with-x264/arm/libavformat-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg-with-x264/arm/libavformat-57.so -------------------------------------------------------------------------------- /so/ffmpeg-with-x264/arm/libavresample-3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg-with-x264/arm/libavresample-3.so -------------------------------------------------------------------------------- /so/ffmpeg-with-x264/arm/libavutil-55.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg-with-x264/arm/libavutil-55.so -------------------------------------------------------------------------------- /so/ffmpeg-with-x264/arm/libpostproc-54.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg-with-x264/arm/libpostproc-54.so -------------------------------------------------------------------------------- /so/ffmpeg-with-x264/arm/libswresample-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg-with-x264/arm/libswresample-2.so -------------------------------------------------------------------------------- /so/ffmpeg-with-x264/arm/libswscale-4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg-with-x264/arm/libswscale-4.so -------------------------------------------------------------------------------- /so/ffmpeg/arm/libavcodec-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg/arm/libavcodec-57.so -------------------------------------------------------------------------------- /so/ffmpeg/arm/libavdevice-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg/arm/libavdevice-57.so -------------------------------------------------------------------------------- /so/ffmpeg/arm/libavfilter-6.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg/arm/libavfilter-6.so -------------------------------------------------------------------------------- /so/ffmpeg/arm/libavformat-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg/arm/libavformat-57.so -------------------------------------------------------------------------------- /so/ffmpeg/arm/libavresample-3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg/arm/libavresample-3.so -------------------------------------------------------------------------------- /so/ffmpeg/arm/libavutil-55.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg/arm/libavutil-55.so -------------------------------------------------------------------------------- /so/ffmpeg/arm/libswresample-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg/arm/libswresample-2.so -------------------------------------------------------------------------------- /so/ffmpeg/arm/libswscale-4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/ffmpeg/arm/libswscale-4.so -------------------------------------------------------------------------------- /so/x264/arm/libx264-148.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunzxyong/FFmpeg-Compile-For-Android/HEAD/so/x264/arm/libx264-148.so --------------------------------------------------------------------------------