Last active
August 29, 2015 14:15
-
-
Save RichardWithnell/35b689f593b1a16db693 to your computer and use it in GitHub Desktop.
Android Gstreamer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Android Studio | |
/*TODO: Update this document to use GStreamer 1.0, will need to update code as well */ | |
1) Download android-ndk-r9d: - does not work with the more recent r10d. | |
wget http://dl.google.com/android/ndk/android-ndk-r9d-linux-x86.tar.bz2 | |
tar xf android-ndk-r9d-linux-x86.tar.bz2 | |
2) Download Gstreamer for Android: | |
wget http://cdn.gstreamer.com/android/arm/gstreamer-sdk-android-arm-debug-2013.6.tar.bz2 | |
tar xf gstreamer-sdk-android-arm-debug-2013.6.tar.bz2 | |
3) Add NDK and GST locations to local.properties. | |
ndk.dir=/home/$(whoami)/Software/Android/android-ndk-r9d | |
gst.dir=/home/$(whoami)/Software/Android/gstreamer | |
4) Update build.gradle | |
https://gist.github.com/RichardWithnell/123dd99fc6b3004c42f6 | |
URLs for ndk-r10d and Gstreamer 1.4.5 | |
http://dl.google.com/android/ndk/android-ndk-r10d-linux-x86.bin | |
http://gstreamer.freedesktop.org/data/pkg/android/1.4.5/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment