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
4
votes
1 answer

Error in building FFMPEG-3.4 with Android-NDK-16.1

Trying to compile the FFMPEG-3.4 with Android-NDK-16.1. Compiling the source on Mac. Getting below Warnings/Errors: WARNING:…
Sagar Trehan
  • 2,401
  • 2
  • 24
  • 32
4
votes
1 answer

FFmpeg error Output file #0 does not contain any stream

I'm getting an error while cutting a portion of a video using FFmpeg Following is my code String[] cmd = {"ffmpeg -ss 0 -i "+mPath+" -t 30 -c copy "+…
Sushin Pv
  • 1,826
  • 3
  • 22
  • 36
4
votes
0 answers

CANNOT LINK EXECUTABLE - ffmpeg - Android

I am getting the following error when I try to use ffmpeg on Android. Error 09-02 18:06:33.805 2861-3659/com.gitlab.onreg01.ffmpegsample D/FFmpeg: Running publishing updates method 09-02 18:06:33.917 2861-2861/com.gitlab.onreg01.ffmpegsample…
zoecarver
  • 5,523
  • 2
  • 26
  • 56
4
votes
1 answer

Add Filters to Video like Instagram or Snapchat via FFmpeg

I am using FFmpeg in my android app. I have implemented following filters/effects successfully on video- Invert Color Black and white Sepia Vignette Gamma effect I followed FFmpeg Video Filter docs. There are similar questions asked but without…
karanatwal.github.io
  • 3,613
  • 3
  • 25
  • 57
4
votes
1 answer

What does forcing key frames mean?

What does forcing key frames mean? As per the doc -force_key_frames[:stream_specifier] expr:expr (output,per-stream) Force key frames at the specified timestamps, more precisely at the first frames after each specified time. If the argument is…
Android Developer
  • 9,157
  • 18
  • 82
  • 139
4
votes
0 answers

Exoplayer FFmpeg support

I am using Android-FFmpeg .aar file fromAndroid-FFmpeg for loading FFmpeg binaries. Is there any way to link the ffmpeg command line output from that module to exoplayer so that it streams the video with out saving the video. Otherwise should i have…
srujith poondla
  • 171
  • 1
  • 12
4
votes
2 answers

Android lib ijkplayer load https url

I am using ijkplayer in my android app that I compile using compile 'tv.danmaku.ijk.media:ijkplayer-java:0.4.5' compile 'tv.danmaku.ijk.media:ijkplayer-armv7a:0.4.5' It works perfectly loading http urls but if I try to load https urls I get this…
3
votes
1 answer

Reduce apk size when using ffmpeg

I am building an app that can trim a video into multiple segments , for that purpose i have used ffmpeg library This command does all the work ffmpeg -i testfile.mp4 -c copy -f segment -segment_time 1200 testfile_piece_%02d.mp4 But including this…
3
votes
0 answers

How to use new file which is created by me as an output file in FFmpeg code execution ? getting E/mobile-ffmpeg: outputFile.mp3 Permission denied

I try to trimming audio from one file to another output file but I am getting trouble accessing the output file in FFmpeg to writing its shows me permission denied. Metadata: title :…
Manish
  • 170
  • 9
3
votes
2 answers

Trim a video and add the boomerang effect on it with FFmpeg

I have a given source video which is 30 seconds long in total. Now I want to trimm the first 5 seconds and apply the boomerang effect on it. That's the command where I am currently: ffmpeg -i src.mp4 -y -an -filter_complex…
Ahmet K
  • 713
  • 18
  • 42
3
votes
1 answer

How to download a part of mp3 from server?

Use Case My use case is roughly equal to, adding a 15-second mp3 file to a ~1 min video. All transcoding merging part will be done by FFmpeg-android so that's not the concern right now. The flow is as follows User can select any 15 seconds…
Sharukh Mohammed
  • 365
  • 2
  • 16
3
votes
1 answer

ffmpeg Cannot determine format of input stream 0:0 after EOF Error marking filters as finished for some mkv video

After executing this command in android ffmpeg library to compress video "-i", /storage/emulated/0/beeGroup/video/saved_file/Prison56.mkv, "-threads", "8", "-vf", "scale=" +scale + ",format=yuv420p" + ",setsar=1", "-c:v", "libx264", "-c:a",…
SaeedDastras
  • 21
  • 1
  • 2
3
votes
1 answer

FFMPEG using concat but process was killed no Error message

I am android devloper I use FFmpeg for edit video. use this library https://github.com/bravobit/FFmpeg-Android just FFmpeg.execute(" command "); I use filter-complex, but process was killed with no error is this clue error message ? "`[out_0_0 @…
김태훈
  • 31
  • 3
3
votes
1 answer

Can't use libopenh264-2.0.0-android.so for my android app because of 32-bit support

In my video editing android app, because of licensing reason, I had to download libopenh264-2.0.0-android.so.bz2 dynamically from this site https://github.com/cisco/openh264/releases to use with ffmpeg. However, if I disable 64-bit for the app, I…
Kevin Duong
  • 658
  • 1
  • 8
  • 20
3
votes
2 answers

Unable to add 64 bit library to my App, Play Store rejects it

I have an app that uses FFmpeg for processing videos. Since now there is the new requirement of 64 bit native libraries. I have been trying to compile my app with the 64 bit binaries without success. I've tried exporting the statically compiled…
alexm
  • 1,285
  • 18
  • 36
1 2
3
33 34