Questions tagged [android-ffmpeg]

Android ffmpeg wrapper are used to add the magic of free open source Ffmpeg inside android platform.

There are several Android ffmpeg wrapper. Most significant are:

499 questions
2
votes
0 answers

Exoplayer 2 AMR Format using FFmpeg extension

I've build the exoplayer ffmpeg extension and added to my project, because i need to support AMR format, so: Following the tutorial: FFmpeg Extension COMMON_OPTIONS="\ ... --enable-decoder=amrnb \ --enable-decoder=amrwb \ ... After…
Anderson K
  • 5,445
  • 5
  • 35
  • 50
2
votes
0 answers

How to add watermark while record video using ffmpeg

I am recording square video using following ffmpeg library. Square Video recorded successfully with audio but now i want to add watermark on video but my application crashed and getting error. Please help me how can i add watermark while record…
Hitesh Gehlot
  • 1,307
  • 1
  • 15
  • 30
2
votes
2 answers

Precompiled FFmpeg for android versus building FFmpeg using android NDK

I am building an android app which does some video processing. I am currently using precompiled FFmpeg from https://github.com/writingminds/ffmpeg-android. The other option is to download FFmpeg source code and compile it using Android NDK. The…
App Developer
  • 165
  • 1
  • 1
  • 14
2
votes
0 answers

ffmpeg4android for every processor type?

There is a issue with ffmpeg4android, it goes for armeabi-v7a only, is there an option to make it work for x86, x86_64 and arm64-v8a? Litteraly, no idea what to do, maybe there is an option to user arm64-v8a backwards compability with armeabi-v7a?
Ivan Mitsura
  • 433
  • 4
  • 15
2
votes
1 answer

FFmpeg play audio stream on a browser

Hey guys i have a live stream that is served by the ffserver but i want the stream to be playable on a browser since i have a website and i also want to play the stream in an android app. Most importantly the android device. i want if i type this on…
tiras muturi
  • 81
  • 1
  • 8
2
votes
2 answers

Android FFMPEG build for arm64 failed with error?

I have made ffmpeg build with following build script. https://github.com/Free-Syj/ffmpeg-build-script/blob/master/build-android-ffmpeg.sh It worked for armv7. when I tried to make for arm64 architecture, it gave me following…
2
votes
0 answers

FFMpeg how to add advance filters to Video

How to add advance filters like Snow rain to video using ffmpeg library. I have visited: https://ffmpeg.org/ffmpeg-all.html and https://trac.ffmpeg.org/wiki/FilteringGuide but cannot come to any conclusion reading these references.
silentsudo
  • 6,730
  • 6
  • 39
  • 81
2
votes
1 answer

FFmpegFrameRecorder add text / image while recording

Does anyone know how to add text, image while recording video using FFmpegFrameRecorder from JavaCV? I have searched everywhere but got nothing
Norutan
  • 1,480
  • 2
  • 14
  • 27
2
votes
1 answer

FFmpeg: Trim video then add watermark with multiple text

I want to trim a video then convert a video using FFMPEG and place a watermark with multiple texts on it. I have commands for trimming : ffmpeg -i 1.mp4 -ss 00:00:03 -t 00:03:08 -async 1 -c copy output1.mp4 and for watermark with text placing…
2
votes
1 answer

Build FFMPEG 3.1.4 for Android

I used this and this methods to build latest (3.1.4) FFMPEG version for Android. Build was succeed. I got several folders with sources / headers / .o files. But unfortunately there are no .so files I need. Are there some updated script for building…
Volodymyr Kulyk
  • 6,455
  • 3
  • 36
  • 63
2
votes
1 answer

videokit.so load fail in marshmallow and above API ffmpeg android

I am working with ffmpeg commands for various operation on videos & images & its working fine on devices having API 22 & below version but when i set targetSdkVersion 23 or 24 at that time my app is going to crash and i am getting : error like…
2
votes
2 answers

creating video from selected images using FFMPEG through command Line Android

i am trying to make a video from selected images from command line using ffmpeg in android using this project as my source i m trying to make video this is the command i m trying to create video String[] ffmpegCommand = {ffmpegBin, …
1
vote
1 answer

FFmpeg Android Errors

Ok so im making a kotlin android app and for file conversion from 3gp to wav i added the android ffmpeg library with implementation 'com.arthenica:mobile-ffmpeg-full:4.4' then i added this code to convert the files FFmpeg.execute("-i" + f2…
Ceiling Fan
  • 13
  • 1
  • 3
1
vote
0 answers

Android video editor UI/preview

I would like to create my own simple video editor, the features I want to implement are basically: merge multiple video files add background music add custom texts, images, stickers, etc cropping, zoom, etc apply basic filters like bw, sephia,…
1
vote
2 answers

Flutter FFmpeg | Concat Multiple Videos From TXT File And Save As A Video

I have a text file with all path of video files that I want to concat using https://pub.dev/packages/ffmpeg_kit_flutter in my flutter app. For this purpose, I write a file my_file.txt with the below…
Muhammad Hassan
  • 1,224
  • 5
  • 31
  • 51