android ffmpeg so库,最新ffmpeg 4.0.2 android 可用so库

这是一个预编译的FFmpeg库,适用于大部分手机类型,包含各种编解码器、设备接口和过滤器头文件,支持如libavcodec、libavformat、libavutil等子库,可用于音视频处理、解码、编码、过滤等功能。附带多个示例代码,方便快速集成到工程中。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

【实例简介】

已经编译好,可直接在工程中使用,支持绝大部分手机类型

【实例截图】

【核心代码】

armeabi-v7a

└── armeabi-v7a

├── bin

│   └── ffmpeg

├── include

│   ├── libavcodec

│   │   ├── ac3_parser.h

│   │   ├── adts_parser.h

│   │   ├── avcodec.h

│   │   ├── avdct.h

│   │   ├── avfft.h

│   │   ├── d3d11va.h

│   │   ├── dirac.h

│   │   ├── dv_profile.h

│   │   ├── dxva2.h

│   │   ├── jni.h

│   │   ├── mediacodec.h

│   │   ├── qsv.h

│   │   ├── vaapi.h

│   │   ├── vdpau.h

│   │   ├── version.h

│   │   ├── videotoolbox.h

│   │   ├── vorbis_parser.h

│   │   └── xvmc.h

│   ├── libavdevice

│   │   ├── avdevice.h

│   │   └── version.h

│   ├── libavfilter

│   │   ├── avfilter.h

│   │   ├── buffersink.h

│   │   ├── buffersrc.h

│   │   └── version.h

│   ├── libavformat

│   │   ├── avformat.h

│   │   ├── avio.h

│   │   └── version.h

│   ├── libavutil

│   │   ├── adler32.h

│   │   ├── aes_ctr.h

│   │   ├── aes.h

│   │   ├── attributes.h

│   │   ├── audio_fifo.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

│   │   ├── encryption_info.h

│   │   ├── error.h

│   │   ├── eval.h

│   │   ├── ffversion.h

│   │   ├── fifo.h

│   │   ├── file.h

│   │   ├── frame.h

│   │   ├── hash.h

│   │   ├── hmac.h

│   │   ├── hwcontext_cuda.h

│   │   ├── hwcontext_d3d11va.h

│   │   ├── hwcontext_drm.h

│   │   ├── hwcontext_dxva2.h

│   │   ├── hwcontext.h

│   │   ├── hwcontext_mediacodec.h

│   │   ├── hwcontext_qsv.h

│   │   ├── hwcontext_vaapi.h

│   │   ├── hwcontext_vdpau.h

│   │   ├── hwcontext_videotoolbox.h

│   │   ├── imgutils.h

│   │   ├── intfloat.h

│   │   ├── intreadwrite.h

│   │   ├── lfg.h

│   │   ├── log.h

│   │   ├── lzo.h

│   │   ├── macros.h

│   │   ├── mastering_display_metadata.h

│   │   ├── mathematics.h

│   │   ├── md5.h

│   │   ├── mem.h

│   │   ├── motion_vector.h

│   │   ├── murmur3.h

│   │   ├── opt.h

│   │   ├── parseutils.h

│   │   ├── pixdesc.h

│   │   ├── pixelutils.h

│   │   ├── pixfmt.h

│   │   ├── random_seed.h

│   │   ├── rational.h

│   │   ├── rc4.h

│   │   ├── replaygain.h

│   │   ├── ripemd.h

│   │   ├── samplefmt.h

│   │   ├── sha512.h

│   │   ├── sha.h

│   │   ├── spherical.h

│   │   ├── stereo3d.h

│   │   ├── tea.h

│   │   ├── threadmessage.h

│   │   ├── timecode.h

│   │   ├── time.h

│   │   ├── timestamp.h

│   │   ├── tree.h

│   │   ├── twofish.h

│   │   ├── version.h

│   │   └── xtea.h

│   ├── libswresample

│   │   ├── swresample.h

│   │   └── version.h

│   └── libswscale

│   ├── swscale.h

│   └── version.h

├── lib

│   ├── libavcodec-58.so

│   ├── libavcodec.so

│   ├── libavdevice-58.so

│   ├── libavdevice.so

│   ├── libavfilter-7.so

│   ├── libavfilter.so

│   ├── libavformat-58.so

│   ├── libavformat.so

│   ├── libavutil-56.so

│   ├── libavutil.so

│   ├── libswresample-3.so

│   ├── libswresample.so

│   ├── libswscale-5.so

│   ├── libswscale.so

│   └── pkgconfig

│   ├── libavcodec.pc

│   ├── libavdevice.pc

│   ├── libavfilter.pc

│   ├── libavformat.pc

│   ├── libavutil.pc

│   ├── libswresample.pc

│   └── libswscale.pc

└── share

└── ffmpeg

├── examples

│   ├── avio_dir_cmd.c

│   ├── avio_reading.c

│   ├── decode_audio.c

│   ├── decode_video.c

│   ├── demuxing_decoding.c

│   ├── encode_audio.c

│   ├── encode_video.c

│   ├── extract_mvs.c

│   ├── filter_audio.c

│   ├── filtering_audio.c

│   ├── filtering_video.c

│   ├── http_multiclient.c

│   ├── hw_decode.c

│   ├── Makefile

│   ├── metadata.c

│   ├── muxing.c

│   ├── qsvdec.c

│   ├── README

│   ├── remuxing.c

│   ├── resampling_audio.c

│   ├── scaling_video.c

│   ├── transcode_aac.c

│   ├── transcoding.c

│   ├── vaapi_encode.c

│   └── vaapi_transcode.c

├── ffprobe.xsd

├── libvpx-1080p50_60.ffpreset

├── libvpx-1080p.ffpreset

├── libvpx-360p.ffpreset

├── libvpx-720p50_60.ffpreset

└── libvpx-720p.ffpreset

15 directories, 164 files

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值