SkillAgentSearch skills...

FFmpegBox

📦 FFmpeg command line tool box for Android

Install / Use

/learn @Quickits/FFmpegBox
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

FFmpegBox

📦 FFmpeg command line tool box for android

  • API Flow Based on RxJava
  • FFmpeg binary Based on Thor

| Version | Converter | | :--------------------------: | :----------------------------: | | Images | Images |

Download

  • Add the JitPack repository to your build file
allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}
  • Add the dependency
dependencies {
    implementation 'cn.quickits:FFmpegBox:1.0.1'
}

Usage

Init

class YourApplication : Application() {
    override fun onCreate() {
        super.onCreate()
        FFmpegBox.init(this)
    }
}

Execute example

FFmpegBox.get().exec(arrayOf(
                    "-i", "/sdcard/screenshots.mp4",
                    "-vcodec", "copy",
                    "/sdcard/screenshots.avi"))
  .observeOn(AndroidSchedulers.mainThread())
  .subscribe(
    { status ->
    msg.append(status.msg)
    msg.append("\n")
    },
    { error -> error.printStackTrace()
  })

License

Apache License Version 2.0

Copyright (c) 2017-present, GavinLiu

View on GitHub
GitHub Stars40
CategoryDevelopment
Updated2mo ago
Forks9

Languages

Kotlin

Security Score

95/100

Audited on Jan 15, 2026

No findings