Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GStreamer on Android

Can anyone give me any tips on getting GStreamer to work on Android. I have never used it before and I would like to use it with FFmpeg (I already have FFmpeg compiled and works fine on Android). I would just like to use GStreamer to help with some of the processing as learning the FFmpeg API is somewhat of a nightmare haha. Thanks in advance for any help at all!

like image 486
DRiFTy Avatar asked Apr 06 '11 15:04

DRiFTy


People also ask

Does GStreamer work on Android?

GStreamer: open source multimedia framework On the site of GStreamer, it trains people how to use it freely, even in Android.

What is GStreamer?

GStreamer is a pipeline-based multimedia framework that links together a wide variety of media processing systems to complete complex workflows. For instance, GStreamer can be used to build a system that reads files in one format, processes them, and exports them in another.


1 Answers

Try this link as well : http://gstreamer.freedesktop.org/wiki/GstreamerAndroid_InstallInstructions

and also subscribe to the gstreamer android mailing list : http://lists.freedesktop.org/mailman/listinfo/gstreamer-android

idealy you must build the gstreamer first for android and then port it and run a basic command on the adb shell for the sanity check.

Once this is done you can do the same for ffmpeg (which you have already done) Download the ndk from here and then Try taking out the sample code from the ndk and add your c files in any of the simple jni programme .In c files you can programme the gstreamer and ffmpeg api calls.

You need to understand the ndk build documentation as well.

like image 168
Raulp Avatar answered Nov 02 '22 09:11

Raulp