Questions tagged [mobile-ffmpeg]
49 questions
0
votes
0 answers
Unable to use concat in stripped down version of ffmpeg
I have compiled ffmpeg for my android app to have only essential components. I have enabled following components.
--disable-everything \
--enable-demuxer=concat \
--enable-muxer=concat,mp4 \
--enable-protocol=file,subfile…

Amit Bhandari
- 3,014
- 6
- 15
- 33
0
votes
1 answer
FFMPEG Creates blurry video
With this library https://github.com/tanersener/mobile-ffmpeg, I am using FFMPEG on iOS. I am trying to create a video from audio, with its relevant waveform, background and a logo image added.
let command = "-i \(audioPath) -i \(imagePath)…

Nina
- 1,579
- 2
- 21
- 51
-1
votes
1 answer
Ffmpeg-kit not detecting my vidoe file (iOS Development, Swift) but the actual application does
I have a video file in the project folder that is detected by the app as VideoPlayer(player: AVPlayer(url: url)) does make use of it and play it on the iPhone screen, I have the video path of simply videoURL = Bundle.main.url(forResource:…

Xavi Font
- 296
- 4
- 19
-1
votes
1 answer
How to add intro image beginning of video with same video aspect ratio in ffmpeg?
I have one image and one video. I would like to add image as video just before actual video so i can stream video with intro frame for 5 seconds.
I found one command and full fill my requirement but in that command image added at the end of the…

Manoj Kag
- 11
- 2