I've gone through this - http://writingminds.github.io/ffmpeg-android-java/
I've gotten FFMpeg
on Android, as in, my app is able to load the FFMPeg
binary. However, ffplay
commands do not work. Is it possible to port ffplay
into my app?
Asked
Active
Viewed 8,785 times
1 Answers
2
Take a look at this lib:
http://androidwarzone.blogspot.com.br/2011/12/ffmpeg4android.html
FFmpeg4Android is a way your application can run FFmpeg commands, only Java, no need for C code, or NDK.
You can use any player that supports streaming, on the target machine, to play the stream, in this case we used ffplay
ffplay -f mpegts -ast 1 -vst 0 -ar 48000 udp://192.168.0.114:8090

kayess
- 3,384
- 9
- 28
- 45

Rafael T. Akiyama
- 21
- 3
-
4Yet to try out Ffmpeg4Android, but I'm wondering how you'd actually set a video source on the MediaPlayer class? – sravan953 May 04 '16 at 11:26
-
Anybody got an idea? – Curious Mind Jul 24 '18 at 16:04
-
This not having ffplay included in the library, it has only ffmpeg – Duna Feb 04 '21 at 08:48