All Projects → mengzhidaren → Ffmpegcmdsdk

mengzhidaren / Ffmpegcmdsdk

ffmpeg and ffprobe android command line tools

Programming Languages

c
50402 projects - #5 most used programming language

Labels

Projects that are alternatives of or similar to Ffmpegcmdsdk

Unitedplayer
A video and audio recorder and player based on OpenGL es,FFmpeg,OpenSl es,MediaCodec on Android platform.It gives video interesting effect through fragment shader.一个支持录制和播放音频视频的安卓短视频应用,并可以选择多种仿抖音滤镜特效展示。
Stars: ✭ 75 (-18.48%)
Mutual labels:  ffmpeg
Aurio
Audio Fingerprinting & Retrieval for .NET
Stars: ✭ 84 (-8.7%)
Mutual labels:  ffmpeg
Ffpyplayer
A cython implementation of an ffmpeg based player.
Stars: ✭ 89 (-3.26%)
Mutual labels:  ffmpeg
Mt
yet another media thumber. Generate Video Contat Sheets easily. http://mutschler.github.io/mt
Stars: ✭ 76 (-17.39%)
Mutual labels:  ffmpeg
Imageio Ffmpeg
FFMPEG wrapper for Python
Stars: ✭ 81 (-11.96%)
Mutual labels:  ffmpeg
Live Dl
Download live streams from YouTube
Stars: ✭ 82 (-10.87%)
Mutual labels:  ffmpeg
Qtfm
Qt File Manager
Stars: ✭ 73 (-20.65%)
Mutual labels:  ffmpeg
Node Sorry
生成表情gif
Stars: ✭ 90 (-2.17%)
Mutual labels:  ffmpeg
Mediasoup3 Record Demo
Simple Record Demo using Mediasoup 3 and GStreamer
Stars: ✭ 84 (-8.7%)
Mutual labels:  ffmpeg
Ffmpegandroidlibrary
One line integration for FFMPEG Library in Android
Stars: ✭ 88 (-4.35%)
Mutual labels:  ffmpeg
Liquid dl
Liquid-dl is a simple tool for utlities such as FFMPEG, youtube-dl, and scdl. It provides a simple framework with simple point and click options allowing users to just click on what they need and use the bare minimum commands to get the results needed.
Stars: ✭ 78 (-15.22%)
Mutual labels:  ffmpeg
Xf wx
微信小程序+ 讯飞语音 实现个人语音助手
Stars: ✭ 79 (-14.13%)
Mutual labels:  ffmpeg
Blog
Android 面试宝典、数据结构和算法、音视频 (FFmpeg、AAC、x264、MediaCodec)、 C/C++ 、OpenCV、跨平台等学习记录。【0基础音视频进阶学习路线】
Stars: ✭ 1,263 (+1272.83%)
Mutual labels:  ffmpeg
Youtube Api
A way to host your own API that converts youtube video's to mp3/mp4 and returns a download/stream link and information.
Stars: ✭ 76 (-17.39%)
Mutual labels:  ffmpeg
Namava Downloader
Download movies from `namava.ir` website. | لینک جایگزین جهت احتیاط: https://gitlab.com/NabiKAZ/namava-downloader
Stars: ✭ 89 (-3.26%)
Mutual labels:  ffmpeg
Pyav
Pythonic bindings for FFmpeg's libraries.
Stars: ✭ 1,196 (+1200%)
Mutual labels:  ffmpeg
Learnffmpeg
Android FFmpeg 音视频开发极简教程
Stars: ✭ 74 (-19.57%)
Mutual labels:  ffmpeg
Soundpusher
Virtual audio device, real-time encoder and SPDIF forwarder for macOS
Stars: ✭ 91 (-1.09%)
Mutual labels:  ffmpeg
Xvideo
一个能自动进行压缩的小视频录制库
Stars: ✭ 90 (-2.17%)
Mutual labels:  ffmpeg
Ksplayer
iOS/macOS/tvOS video player
Stars: ✭ 86 (-6.52%)
Mutual labels:  ffmpeg

#ffmpeg and ffprobe android command line tools

FFMPEG(4.1.3 官网2019-07-05最新版本)

  1. ffmpeg日志回调接口
  2. ffmpeg增加监听百分比进度(需要获取转码后视频的总时间 具体看demo)
ffmpeg需要单例运行  
如:转码mp4 CPU利用率80%以上 其它视频不低于60%间波动  (冬天暖手宝)

FFPROBE

  1. ffprobe 只实现了返回 json 回调
  2. ffprobe线程和ffmpeg线程独立运行

注意编解码器

如果编码器全开放 库文件就太大了
解码器全部放开了 但是编码器只有aac 和 libx264  所以大部分手机基本都支持了
--disable-encoders 
--enable-encoder=aac 
--enable-encoder=libx264 
--enable-encoder=png 
--enable-encoder=mjpeg

如果对编码器有特殊需求的可以重新编译库文件
重新裁剪编码器解决问题

review runing

Gradle

implementation 'com.yyl.ffmpeg:ffmpeg_cmd:4.1.3'

目前支持的库 armeabi-v7a  arm64-v8a 也可以参考build_android.sh脚本定制
 ndk {
            abiFilters "armeabi-v7a","arm64-v8a" 
      }

java Code

    
   //ffprobe -v error -print_format json -select_streams v:0 -show_entries stream=width,height,index inputFile
    String cmd = "ffprobe -v quiet -print_format json -show_format -i " +inputFile;
    String json = FFmpegUtils.getInstance().execffprobe(cmd);
  
    String cmd = "ffmpeg -h"
    int code = FFmpegUtils.getInstance().execffmpeg(cmd,callback);
    

####编译版本号官网2019-07-05最新版本ffmpeg和h264

License

MIT License.

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].