├── .gitignore ├── LICENSE ├── README.md ├── example ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── xiachufang │ │ │ └── ffmpegexecutor │ │ │ ├── Constants.java │ │ │ ├── FMMRDemo.java │ │ │ ├── FMMRFragment.java │ │ │ ├── MainActivity.java │ │ │ ├── Metadata.java │ │ │ ├── MetadataLoader.java │ │ │ └── MyApplication.java │ └── res │ │ ├── layout │ │ ├── activity.xml │ │ ├── activity_main.xml │ │ ├── fragment.xml │ │ └── header.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── xiachufang │ └── ffmpegexecutor │ ├── ApplicationTest.java │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── address2line.cmd ├── bintray.gradle ├── build.gradle ├── gradle.properties ├── jni │ ├── Android.mk │ ├── Errors.h │ ├── FFmpegNativeHelper.c │ ├── FFmpegNativeHelper.h │ ├── Mutex.h │ ├── android_log.h │ ├── arm_config.h │ ├── build.cmd │ ├── build.sh │ ├── cmdutils.c │ ├── cmdutils.h │ ├── cmdutils_common_opts.h │ ├── config.h │ ├── ffmpeg.h │ ├── ffmpeg_filter.c │ ├── ffmpeg_mediametadataretriever.c │ ├── ffmpeg_mediametadataretriever.h │ ├── ffmpeg_opt.c │ ├── ffmpeg_utils.c │ ├── ffmpeg_utils.h │ ├── include │ │ ├── compat │ │ │ └── va_copy.h │ │ ├── libavcodec │ │ │ ├── arm │ │ │ │ └── mathops.h │ │ │ ├── avcodec.h │ │ │ ├── avdct.h │ │ │ ├── avfft.h │ │ │ ├── d3d11va.h │ │ │ ├── dirac.h │ │ │ ├── dv_profile.h │ │ │ ├── dxva2.h │ │ │ ├── jni.h │ │ │ ├── mathops.h │ │ │ ├── mediacodec.h │ │ │ ├── old_codec_ids.h │ │ │ ├── qsv.h │ │ │ ├── vaapi.h │ │ │ ├── vda.h │ │ │ ├── vdpau.h │ │ │ ├── version.h │ │ │ ├── videotoolbox.h │ │ │ ├── vorbis_parser.h │ │ │ ├── x86 │ │ │ │ └── mathops.h │ │ │ └── xvmc.h │ │ ├── libavdevice │ │ │ ├── avdevice.h │ │ │ └── version.h │ │ ├── libavfilter │ │ │ ├── asrc_abuffer.h │ │ │ ├── avcodec.h │ │ │ ├── avfilter.h │ │ │ ├── avfiltergraph.h │ │ │ ├── buffersink.h │ │ │ ├── buffersrc.h │ │ │ └── version.h │ │ ├── libavformat │ │ │ ├── avformat.h │ │ │ ├── avio.h │ │ │ ├── network.h │ │ │ ├── os_support.h │ │ │ ├── url.h │ │ │ └── version.h │ │ ├── libavresample │ │ │ ├── avresample.h │ │ │ └── version.h │ │ ├── libavutil │ │ │ ├── adler32.h │ │ │ ├── aes.h │ │ │ ├── aes_ctr.h │ │ │ ├── arm │ │ │ │ └── timer.h │ │ │ ├── attributes.h │ │ │ ├── audio_fifo.h │ │ │ ├── audioconvert.h │ │ │ ├── avassert.h │ │ │ ├── avconfig.h │ │ │ ├── avstring.h │ │ │ ├── avutil.h │ │ │ ├── base64.h │ │ │ ├── blowfish.h │ │ │ ├── bprint.h │ │ │ ├── bswap.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast5.h │ │ │ ├── channel_layout.h │ │ │ ├── common.h │ │ │ ├── cpu.h │ │ │ ├── crc.h │ │ │ ├── des.h │ │ │ ├── dict.h │ │ │ ├── display.h │ │ │ ├── downmix_info.h │ │ │ ├── error.h │ │ │ ├── eval.h │ │ │ ├── ffversion.h │ │ │ ├── fifo.h │ │ │ ├── file.h │ │ │ ├── frame.h │ │ │ ├── hash.h │ │ │ ├── hmac.h │ │ │ ├── hwcontext.h │ │ │ ├── hwcontext_cuda.h │ │ │ ├── hwcontext_dxva2.h │ │ │ ├── hwcontext_qsv.h │ │ │ ├── hwcontext_vaapi.h │ │ │ ├── hwcontext_vdpau.h │ │ │ ├── imgutils.h │ │ │ ├── internal.h │ │ │ ├── intfloat.h │ │ │ ├── intreadwrite.h │ │ │ ├── lfg.h │ │ │ ├── libm.h │ │ │ ├── log.h │ │ │ ├── lzo.h │ │ │ ├── macros.h │ │ │ ├── mastering_display_metadata.h │ │ │ ├── mathematics.h │ │ │ ├── md5.h │ │ │ ├── mem.h │ │ │ ├── motion_vector.h │ │ │ ├── murmur3.h │ │ │ ├── old_pix_fmts.h │ │ │ ├── opt.h │ │ │ ├── parseutils.h │ │ │ ├── pixdesc.h │ │ │ ├── pixelutils.h │ │ │ ├── pixfmt.h │ │ │ ├── random_seed.h │ │ │ ├── rational.h │ │ │ ├── rc4.h │ │ │ ├── replaygain.h │ │ │ ├── ripemd.h │ │ │ ├── samplefmt.h │ │ │ ├── sha.h │ │ │ ├── sha512.h │ │ │ ├── spherical.h │ │ │ ├── stereo3d.h │ │ │ ├── tea.h │ │ │ ├── threadmessage.h │ │ │ ├── time.h │ │ │ ├── timecode.h │ │ │ ├── timer.h │ │ │ ├── timestamp.h │ │ │ ├── tree.h │ │ │ ├── twofish.h │ │ │ ├── version.h │ │ │ ├── x86 │ │ │ │ └── asm.h │ │ │ └── xtea.h │ │ ├── libpostproc │ │ │ ├── postprocess.h │ │ │ └── version.h │ │ ├── libswresample │ │ │ ├── swresample.h │ │ │ └── version.h │ │ └── libswscale │ │ │ ├── swscale.h │ │ │ └── version.h │ ├── mediametadataretriever.cpp │ ├── mediametadataretriever.h │ ├── prebuilt │ │ └── armeabi │ │ │ ├── libavcodec-57.so │ │ │ ├── libavdevice-57.so │ │ │ ├── libavfilter-6.so │ │ │ ├── libavformat-57.so │ │ │ ├── libavutil-55.so │ │ │ ├── libpostproc-54.so │ │ │ ├── libswresample-2.so │ │ │ ├── libswscale-4.so │ │ │ └── libx264-148.so │ ├── show_func_wrapper.c │ ├── show_func_wrapper.h │ ├── wseemann_media_MediaMetadataRetriever.cpp │ └── x86_config.h ├── libs │ └── armeabi │ │ ├── libavcodec-57.so │ │ ├── libavdevice-57.so │ │ ├── libavfilter-6.so │ │ ├── libavformat-57.so │ │ ├── libavutil-55.so │ │ ├── libffmpeg_mediametadataretriever_jni.so │ │ ├── libffmpegjni.so │ │ ├── libpostproc-54.so │ │ ├── libswresample-2.so │ │ ├── libswscale-4.so │ │ └── libx264-148.so ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── xiachufang │ │ └── utils │ │ └── video │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── xiachufang │ │ │ └── utils │ │ │ └── video │ │ │ ├── FFmpegMediaMetadataRetriever.java │ │ │ └── FFmpegNativeHelper.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── cn │ └── dxjia │ └── ffmpeg │ └── library │ └── ExampleUnitTest.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/build.gradle -------------------------------------------------------------------------------- /example/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/proguard-rules.pro -------------------------------------------------------------------------------- /example/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/src/main/java/com/xiachufang/ffmpegexecutor/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/java/com/xiachufang/ffmpegexecutor/Constants.java -------------------------------------------------------------------------------- /example/src/main/java/com/xiachufang/ffmpegexecutor/FMMRDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/java/com/xiachufang/ffmpegexecutor/FMMRDemo.java -------------------------------------------------------------------------------- /example/src/main/java/com/xiachufang/ffmpegexecutor/FMMRFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/java/com/xiachufang/ffmpegexecutor/FMMRFragment.java -------------------------------------------------------------------------------- /example/src/main/java/com/xiachufang/ffmpegexecutor/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/java/com/xiachufang/ffmpegexecutor/MainActivity.java -------------------------------------------------------------------------------- /example/src/main/java/com/xiachufang/ffmpegexecutor/Metadata.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/java/com/xiachufang/ffmpegexecutor/Metadata.java -------------------------------------------------------------------------------- /example/src/main/java/com/xiachufang/ffmpegexecutor/MetadataLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/java/com/xiachufang/ffmpegexecutor/MetadataLoader.java -------------------------------------------------------------------------------- /example/src/main/java/com/xiachufang/ffmpegexecutor/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/java/com/xiachufang/ffmpegexecutor/MyApplication.java -------------------------------------------------------------------------------- /example/src/main/res/layout/activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/layout/activity.xml -------------------------------------------------------------------------------- /example/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /example/src/main/res/layout/fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/layout/fragment.xml -------------------------------------------------------------------------------- /example/src/main/res/layout/header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/layout/header.xml -------------------------------------------------------------------------------- /example/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /example/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /example/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/src/test/java/com/xiachufang/ffmpegexecutor/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/test/java/com/xiachufang/ffmpegexecutor/ApplicationTest.java -------------------------------------------------------------------------------- /example/src/test/java/com/xiachufang/ffmpegexecutor/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/example/src/test/java/com/xiachufang/ffmpegexecutor/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /obj 3 | -------------------------------------------------------------------------------- /library/address2line.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/address2line.cmd -------------------------------------------------------------------------------- /library/bintray.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/bintray.gradle -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/gradle.properties -------------------------------------------------------------------------------- /library/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/Android.mk -------------------------------------------------------------------------------- /library/jni/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/Errors.h -------------------------------------------------------------------------------- /library/jni/FFmpegNativeHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/FFmpegNativeHelper.c -------------------------------------------------------------------------------- /library/jni/FFmpegNativeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/FFmpegNativeHelper.h -------------------------------------------------------------------------------- /library/jni/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/Mutex.h -------------------------------------------------------------------------------- /library/jni/android_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/android_log.h -------------------------------------------------------------------------------- /library/jni/arm_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/arm_config.h -------------------------------------------------------------------------------- /library/jni/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/build.cmd -------------------------------------------------------------------------------- /library/jni/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/build.sh -------------------------------------------------------------------------------- /library/jni/cmdutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/cmdutils.c -------------------------------------------------------------------------------- /library/jni/cmdutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/cmdutils.h -------------------------------------------------------------------------------- /library/jni/cmdutils_common_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/cmdutils_common_opts.h -------------------------------------------------------------------------------- /library/jni/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/config.h -------------------------------------------------------------------------------- /library/jni/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/ffmpeg.h -------------------------------------------------------------------------------- /library/jni/ffmpeg_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/ffmpeg_filter.c -------------------------------------------------------------------------------- /library/jni/ffmpeg_mediametadataretriever.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/ffmpeg_mediametadataretriever.c -------------------------------------------------------------------------------- /library/jni/ffmpeg_mediametadataretriever.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/ffmpeg_mediametadataretriever.h -------------------------------------------------------------------------------- /library/jni/ffmpeg_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/ffmpeg_opt.c -------------------------------------------------------------------------------- /library/jni/ffmpeg_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/ffmpeg_utils.c -------------------------------------------------------------------------------- /library/jni/ffmpeg_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/ffmpeg_utils.h -------------------------------------------------------------------------------- /library/jni/include/compat/va_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/compat/va_copy.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/arm/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/arm/mathops.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/jni.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/mathops.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/old_codec_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/old_codec_ids.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/vda.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/version.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/x86/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/x86/mathops.h -------------------------------------------------------------------------------- /library/jni/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /library/jni/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /library/jni/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavdevice/version.h -------------------------------------------------------------------------------- /library/jni/include/libavfilter/asrc_abuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavfilter/asrc_abuffer.h -------------------------------------------------------------------------------- /library/jni/include/libavfilter/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavfilter/avcodec.h -------------------------------------------------------------------------------- /library/jni/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /library/jni/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /library/jni/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /library/jni/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /library/jni/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavfilter/version.h -------------------------------------------------------------------------------- /library/jni/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavformat/avformat.h -------------------------------------------------------------------------------- /library/jni/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavformat/avio.h -------------------------------------------------------------------------------- /library/jni/include/libavformat/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavformat/network.h -------------------------------------------------------------------------------- /library/jni/include/libavformat/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavformat/os_support.h -------------------------------------------------------------------------------- /library/jni/include/libavformat/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavformat/url.h -------------------------------------------------------------------------------- /library/jni/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavformat/version.h -------------------------------------------------------------------------------- /library/jni/include/libavresample/avresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavresample/avresample.h -------------------------------------------------------------------------------- /library/jni/include/libavresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavresample/version.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/adler32.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/aes.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/arm/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/arm/timer.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/attributes.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/audioconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/audioconvert.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/avassert.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/avstring.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/avutil.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/base64.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/bprint.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/bswap.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/buffer.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/camellia.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/cast5.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/common.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/cpu.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/crc.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/des.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/dict.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/display.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/error.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/eval.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/fifo.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/file.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/frame.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/hash.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/hmac.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/internal.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/lfg.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/libm.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/log.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/lzo.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/macros.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/md5.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/mem.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/old_pix_fmts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/old_pix_fmts.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/opt.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/rational.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/rc4.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/sha.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/sha512.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/spherical.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/tea.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/time.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/timecode.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/timer.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/tree.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/twofish.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/version.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/x86/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/x86/asm.h -------------------------------------------------------------------------------- /library/jni/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libavutil/xtea.h -------------------------------------------------------------------------------- /library/jni/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /library/jni/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libpostproc/version.h -------------------------------------------------------------------------------- /library/jni/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libswresample/swresample.h -------------------------------------------------------------------------------- /library/jni/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libswresample/version.h -------------------------------------------------------------------------------- /library/jni/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libswscale/swscale.h -------------------------------------------------------------------------------- /library/jni/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/include/libswscale/version.h -------------------------------------------------------------------------------- /library/jni/mediametadataretriever.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/mediametadataretriever.cpp -------------------------------------------------------------------------------- /library/jni/mediametadataretriever.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/mediametadataretriever.h -------------------------------------------------------------------------------- /library/jni/prebuilt/armeabi/libavcodec-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/prebuilt/armeabi/libavcodec-57.so -------------------------------------------------------------------------------- /library/jni/prebuilt/armeabi/libavdevice-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/prebuilt/armeabi/libavdevice-57.so -------------------------------------------------------------------------------- /library/jni/prebuilt/armeabi/libavfilter-6.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/prebuilt/armeabi/libavfilter-6.so -------------------------------------------------------------------------------- /library/jni/prebuilt/armeabi/libavformat-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/prebuilt/armeabi/libavformat-57.so -------------------------------------------------------------------------------- /library/jni/prebuilt/armeabi/libavutil-55.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/prebuilt/armeabi/libavutil-55.so -------------------------------------------------------------------------------- /library/jni/prebuilt/armeabi/libpostproc-54.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/prebuilt/armeabi/libpostproc-54.so -------------------------------------------------------------------------------- /library/jni/prebuilt/armeabi/libswresample-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/prebuilt/armeabi/libswresample-2.so -------------------------------------------------------------------------------- /library/jni/prebuilt/armeabi/libswscale-4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/prebuilt/armeabi/libswscale-4.so -------------------------------------------------------------------------------- /library/jni/prebuilt/armeabi/libx264-148.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/prebuilt/armeabi/libx264-148.so -------------------------------------------------------------------------------- /library/jni/show_func_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/show_func_wrapper.c -------------------------------------------------------------------------------- /library/jni/show_func_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/show_func_wrapper.h -------------------------------------------------------------------------------- /library/jni/wseemann_media_MediaMetadataRetriever.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/wseemann_media_MediaMetadataRetriever.cpp -------------------------------------------------------------------------------- /library/jni/x86_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/jni/x86_config.h -------------------------------------------------------------------------------- /library/libs/armeabi/libavcodec-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/libs/armeabi/libavcodec-57.so -------------------------------------------------------------------------------- /library/libs/armeabi/libavdevice-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/libs/armeabi/libavdevice-57.so -------------------------------------------------------------------------------- /library/libs/armeabi/libavfilter-6.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/libs/armeabi/libavfilter-6.so -------------------------------------------------------------------------------- /library/libs/armeabi/libavformat-57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/libs/armeabi/libavformat-57.so -------------------------------------------------------------------------------- /library/libs/armeabi/libavutil-55.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/libs/armeabi/libavutil-55.so -------------------------------------------------------------------------------- /library/libs/armeabi/libffmpeg_mediametadataretriever_jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/libs/armeabi/libffmpeg_mediametadataretriever_jni.so -------------------------------------------------------------------------------- /library/libs/armeabi/libffmpegjni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/libs/armeabi/libffmpegjni.so -------------------------------------------------------------------------------- /library/libs/armeabi/libpostproc-54.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/libs/armeabi/libpostproc-54.so -------------------------------------------------------------------------------- /library/libs/armeabi/libswresample-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/libs/armeabi/libswresample-2.so -------------------------------------------------------------------------------- /library/libs/armeabi/libswscale-4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/libs/armeabi/libswscale-4.so -------------------------------------------------------------------------------- /library/libs/armeabi/libx264-148.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/libs/armeabi/libx264-148.so -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/xiachufang/utils/video/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/src/androidTest/java/com/xiachufang/utils/video/ApplicationTest.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/xiachufang/utils/video/FFmpegMediaMetadataRetriever.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/src/main/java/com/xiachufang/utils/video/FFmpegMediaMetadataRetriever.java -------------------------------------------------------------------------------- /library/src/main/java/com/xiachufang/utils/video/FFmpegNativeHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/src/main/java/com/xiachufang/utils/video/FFmpegNativeHelper.java -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /library/src/test/java/cn/dxjia/ffmpeg/library/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhoulujue/ffmpeg-commands-executor-library/HEAD/library/src/test/java/cn/dxjia/ffmpeg/library/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':example', ':library' 2 | --------------------------------------------------------------------------------