@Tyhj
        
        2018-06-18T05:28:49.000000Z
        字数 776
        阅读 1865
    Android
原文链接:https://www.zybuluo.com/Tyhj/note/1184684
Step 1. Add the JitPack repository to your build file
//Add it in your root build.gradle at the end of repositories:allprojects {repositories {...maven { url 'https://jitpack.io' }}}
Step 2. Add the dependency
//Add the dependencydependencies {implementation 'com.github.tyhjh:FFmpeg:-SNAPSHOT'}
//调用FFmpeg命令,command为FFmpeg命令,返回值为0,则操作成功String command;int result = FFmpeg.getsInstance().run(command.split(" "));
//本项目提供一个视频转GIF示例,其他功能可以通过调用FFmpeg命令自己实现new Thread(new Runnable() {@Overridepublic void run() {String pathFrom = "/mnt/sdcard/av.mp4";String pathTo = "/mnt/sdcard/av.gif";Setting setting = new Setting(true,1080,1920,20,0,20);Mv2Gif.convert(pathFrom, pathTo, setting);}}).start();
相关文章:Android录屏+视频转Gif实现 
项目源码:https://github.com/tyhjh/FFmpeg
