π Android GPUImage Plus v3.2.0
π¦ Downloads
Demo APK:
cgeDemo-3.2.0.apk- Demo application with full video features
AAR Library Artifacts:
Four variants are available for different use cases:
-
gpuimage-plus-3.2.0.aar
- Page size: 4KB (default)
- Full-featured with FFmpeg bundled
- Architectures: armeabi-v7a, arm64-v8a, x86, x86_64
-
gpuimage-plus-3.2.0-16k.aar
- Page size: 16KB
- Full-featured with FFmpeg bundled
- Architectures: armeabi-v7a, arm64-v8a, x86, x86_64
-
gpuimage-plus-3.2.0-min.aar
- Page size: 4KB (default)
- Image-only version (no video features or FFmpeg)
- Architectures: armeabi-v7a, arm64-v8a, x86, x86_64
-
gpuimage-plus-3.2.0-16k-min.aar
- Page size: 16KB
- Image-only version (no video features or FFmpeg)
- Architectures: armeabi-v7a, arm64-v8a, x86, x86_64
π§ Gradle Dependency
allprojects {
repositories {
maven {
url 'https://maven.wysaid.org/'
}
}
}
dependencies {
// Choose one of the following based on your needs:
// Full-featured with FFmpeg (4KB page size)
implementation 'org.wysaid:gpuimage-plus:3.2.0'
// Full-featured with FFmpeg (16KB page size)
implementation 'org.wysaid:gpuimage-plus:3.2.0-16k'
// Image-only, no video (4KB page size)
implementation 'org.wysaid:gpuimage-plus:3.2.0-min'
// Image-only, no video (16KB page size)
implementation 'org.wysaid:gpuimage-plus:3.2.0-16k-min'
}π System Requirements
- Minimum Android SDK: API 21 (Android 5.0)
- Target Android SDK: API 25
- NDK Version: r27c
- Supported Architectures: armeabi-v7a, arm64-v8a, x86, x86_64
π Documentation
- GitHub Repository: https://github.com/wysaid/android-gpuimage-plus
- Build & Integration Guide: https://github.com/wysaid/android-gpuimage-plus/blob/master/docs/build.md
- Filter Rule Documentation: https://github.com/wysaid/android-gpuimage-plus/blob/master/docs/filter-rules.md
For complete changelog, see the auto-generated content below.
What's Changed
- ci: release workflow overhaul β draft releases, master validation, direct maven commit, NDK r27c/r29 by @wysaid in #564
- feat: Implement CameraX support with runtime camera API selection by @wysaid in #565
- feat: add zoom ratio API (setZoomRatio) to ICameraProvider by @wysaid in #566
Full Changelog: v3.1.2...v3.2.0