All Projects â†’ Quickits â†’ FFmpegBox

Quickits / FFmpegBox

Licence: Apache-2.0 license
📦 FFmpeg command line tool box for Android

Programming Languages

kotlin
9241 projects
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to FFmpegBox

Tigre
TIGRE: Tomographic Iterative GPU-based Reconstruction Toolbox
Stars: ✭ 215 (+465.79%)
Mutual labels:  toolbox
Krypton-Toolkit-Suite-Extended-NET-5.470
An extension to the Krypton Toolkit suite of controls for .NET framework 4.7
Stars: ✭ 51 (+34.21%)
Mutual labels:  toolbox
Awesome-Tools-For-WebDevelopers
Awesome Tools For Web Developers
Stars: ✭ 57 (+50%)
Mutual labels:  toolbox
Elastix
Official elastix repository
Stars: ✭ 222 (+484.21%)
Mutual labels:  toolbox
dwl
The Dynamic Whole-body Locomotion library (DWL)
Stars: ✭ 70 (+84.21%)
Mutual labels:  toolbox
XTR-Toolbox
🛠 Versatile tool to optimize Windows
Stars: ✭ 138 (+263.16%)
Mutual labels:  toolbox
Tomopy
Tomographic Reconstruction in Python
Stars: ✭ 188 (+394.74%)
Mutual labels:  toolbox
delay-discounting-analysis
Hierarchical Bayesian estimation and hypothesis testing for delay discounting tasks
Stars: ✭ 20 (-47.37%)
Mutual labels:  toolbox
TEAP
Toolbox for Emotion Analysis using Physiological signals
Stars: ✭ 50 (+31.58%)
Mutual labels:  toolbox
VBA-toolbox
The VBA toolbox
Stars: ✭ 103 (+171.05%)
Mutual labels:  toolbox
azure-toolbox
A Docker container with Azure Resource Manager administration tools and a machine/deep learning stack
Stars: ✭ 18 (-52.63%)
Mutual labels:  toolbox
marltoolbox
A toolbox with the goal of speeding up research on bargaining in MARL (cooperation problems in MARL).
Stars: ✭ 25 (-34.21%)
Mutual labels:  toolbox
monster
MONSTeR is a framework built around the LTE system toolbox available in Matlab
Stars: ✭ 21 (-44.74%)
Mutual labels:  toolbox
Fcm Toolbox
📲 Firebase Cloud Messaging toolbox
Stars: ✭ 217 (+471.05%)
Mutual labels:  toolbox
wb-toolbox
Simulink toolbox to rapidly prototype robot controllers
Stars: ✭ 20 (-47.37%)
Mutual labels:  toolbox
Pydlt
PyTorch based Deep Learning Toolbox
Stars: ✭ 208 (+447.37%)
Mutual labels:  toolbox
PanoBasic
Matlab Toolbox for Panorama Image Processing
Stars: ✭ 81 (+113.16%)
Mutual labels:  toolbox
verified calibration
Calibration library and code for the paper: Verified Uncertainty Calibration. Ananya Kumar, Percy Liang, Tengyu Ma. NeurIPS 2019 (Spotlight).
Stars: ✭ 93 (+144.74%)
Mutual labels:  toolbox
bruceR
📦 BRoadly Useful Convenient and Efficient R functions that BRing Users Concise and Elegant R data analyses.
Stars: ✭ 110 (+189.47%)
Mutual labels:  toolbox
toolbox
dein ToolBox - C# .Net Library with utilities like: command line, files, log, platform, shell, system, transform and validation [ Win+Mac+Linux ]
Stars: ✭ 46 (+21.05%)
Mutual labels:  toolbox

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].