Testing gstreamer runtime libraries in Android

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Testing gstreamer runtime libraries in Android

Alfred
Hi

On completion of gstreamer-1.8.2 build for android from source using cerbero, I got two gstreamer-1.0 packages - static and runtime. Using tutorials available, I tested static gstreamer libraries. How do I test the runtime(.so) libraries? Is there any sample application or tutorials available for that?
Please advise.


Regards
Alfred
Reply | Threaded
Open this post in threaded view
|

Re: Testing gstreamer runtime libraries in Android

Sebastian Dröge-3
On Tue, 2016-09-06 at 04:51 -0700, Alfred wrote:
> Hi
>
> On completion of gstreamer-1.8.2 build for android from source using
> cerbero, I got two gstreamer-1.0 packages - static and runtime. Using
> tutorials available, I tested static gstreamer libraries. How do I test the
> runtime(.so) libraries? Is there any sample application or tutorials
> available for that?

What do you want to test? You can find a playback example application here:
https://github.com/sdroege/gst-player/tree/master/android

A remote-controlled "gst-launch"-style thing here:
https://github.com/sdroege/gst-launch-remote/tree/master/android-launch


And some more things here:
https://cgit.freedesktop.org/~slomo/gst-sdk-tutorials/tree/gst-sdk/tutorials/

--
Sebastian Dröge, Centricular Ltd · http://www.centricular.com
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel

signature.asc (949 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Testing gstreamer runtime libraries in Android

Alfred
This post was updated on .
Thanks for your reply.
Please see the below steps which I used to build apk for tutorial 5 with gstreamer-1.0-android-arm-1.8.2.tar.bz2

1) Set the GSTREAMER_ROOT_ANDROID to $PATH/gstreamer-1.0-android-arm-1.8.2
2) cd $PATH/android-tutorial-5/app/src/main
    Issued command " ndk-build "
3) Copied the 'libtutorial-5.so' and 'libgstreamer-android.so' to 'jniLibs'
4) Build tutorial-5 project from Android studio

Now I have to build apk for tutorial 5 using gstreamer-1.0-android-arm-1.8.2-runtime.tar.bz2
Please suggest steps to follow to build apk.