FFmpegKit · retired Jan 2025

Your FFmpegKit build is broken. We fixed it.

FFmpegKit was pulled from Maven Central in April 2025. Jokobee ships prebuilt, drop-in AARs — same com.arthenica.ffmpegkit API, no NDK on your end. Swap one Gradle line and ship.

// arm64-v8a · API 24+ · Android 15 ready · 16 KB page aligned

~/app — ./gradlew assembleRelease
./gradlew assembleRelease
> Could not resolve com.arthenica:ffmpeg-kit-full:6.0
  > Received status code 404 BUILD FAILED

// swap one line — start free →
implementation("dev.ffmpegkit-maintained:ffmpeg-kit-free-81:8.1.7")
> Resolved. BUILD SUCCESSFUL SHIPPING
Same package · com.arthenica.ffmpegkit arm64-v8a · single ABI min API 24 · compileSdk 35 16 KB page aligned Prebuilt .aar · no NDK Free on Maven · dev.ffmpegkit-maintained
Choose your build

Three LTS lines, four tiers.

Licensing follows FFmpeg upstream — LGPL by default, GPL only where GPL-licensed encoders (x264/x265) are enabled. Start with the free Maven tier, upgrade when you need hardware acceleration, encoders or AI.

FFmpegKit 8.1

FFmpeg n8.1.2 · NDK r27c · Android 15 · 16 KB aligned
Free LGPL v3
$0 · Maven
  • Decode H.264/H.265/AV1/VP8/VP9
  • Remux & transcode · Opus/Vorbis
Basic LGPL v3
$24 · $64 team
  • MediaCodec HW H.264/H.265
  • H.264 encode · AAC/MP3 · TLS
Whisper AI
Full LGPL v3
$34 · $89 team
  • All LGPL codecs · H.265 encode
  • libass subtitles · SRT
  • 🎙️ Whisper AI · 99 languages
Full GPL GPL v3
$44 · $119 team
  • Everything in Full + Whisper
  • x264 · x265 · xvid encoders

FFmpegKit 7.1 LTS

FFmpeg n7.1.5 · NDK r27c · arm64-v8a
Free LGPL v3
$0 · Maven
  • Decode & transcode core
Basic LGPL v3
$19 · $49 team
  • MediaCodec HW · H.264 encode
  • AAC/MP3/AMR · TLS
Popular
Full LGPL v3
$29 · $75 team
  • All LGPL codecs · H.265 encode
  • libass subtitles · SRT
Full GPL GPL v3
$39 · $99 team
  • Everything in Full
  • x264 · x265 encoders

FFmpegKit 6.0 LTS

FFmpeg n6.0 · NDK r26c · legacy compatibility
Free LGPL v3
$0 · Maven
  • Decode & transcode core
Basic LGPL v3
$19 · $49 team
  • MediaCodec HW · H.264 encode
  • AAC/MP3/AMR · TLS
Full GPL GPL v3
$39 · $99 team
  • All codecs + x264 · x265
  • Best-in-class H.264 encode
Zero-migration path

From 404 to shipping in one edit.

Point at Maven Central, swap the dead coordinate for the maintained one, and build. Your Kotlin/Java imports stay identical.

app/build.gradle.kts
// before — resolves to 404
implementation("com.arthenica:ffmpeg-kit-full:6.0")
// after — maintained · free on Maven Central
implementation("dev.ffmpegkit-maintained:ffmpeg-kit-free-81:8.1.7")
// same import, untouched
import com.arthenica.ffmpegkit.FFmpegKit