From t.i.m at zen.co.uk Tue Jun 12 17:15:41 2018 From: t.i.m at zen.co.uk (Tim-Philipp =?ISO-8859-1?Q?M=FCller?=) Date: Tue, 12 Jun 2018 18:15:41 +0100 Subject: GStreamer Conference 2018 Message-ID: <3827526e2f82699245cc453ade3627f765f5165b.camel@zen.co.uk> The GStreamer project is happy to announce that this year's GStreamer Conference will take place on Thursday-Friday 25-26 October 2018 in Edinburgh, Scotland. You can find more details about the conference on the GStreamer Conference 2018 web page at https://gstreamer.freedesktop.org/conference/2018/ A call for papers will be sent out shortly. Registration will open at a later time. We will announce those and any further updates on the gstreamer-announce mailing list [1], the website [2] and on Twitter [3]. Talk slots will be available in varying durations from 20 minutes up to 45 minutes. Whatever you're doing or planning to do with GStreamer, we'd like to hear from you! We also plan to have sessions with short lightning talks / demos / showcase talks for those who just want to show what they've been working on or do a mini-talk instead of a full-length talk. Lightning talk slots will be allocated on a first-come-first-serve basis, so make sure to reserve your slot if you plan on giving a lightning talk. There will also be a social event again on Thursday evening. There are also plans to have a hackfest the weekend right after the conference. We hope to see you in Edinburgh! [1] https://lists.freedesktop.org/mailman/listinfo/gstreamer-announce [2] https://gstreamer.freedesktop.org/news/ [3] https://twitter.com/GStreamer From omarmoussa at live.com Wed Jun 27 12:14:59 2018 From: omarmoussa at live.com (Omar Moussa) Date: Wed, 27 Jun 2018 12:14:59 +0000 Subject: GStreamer on Android Studio Message-ID: Hello I am working on a project that requires gstreamer and i am trying to implement it on android studio but can't get working. Is there a method I can use to at least run the tutorial programs? I searched online a lot and couldn't find anything. Your help is much appreciated. Best regards, Omar Moussa -------------- next part -------------- An HTML attachment was scrubbed... URL: From mathieu at centricular.com Thu Jun 28 14:21:26 2018 From: mathieu at centricular.com (Mathieu Duponchelle) Date: Thu, 28 Jun 2018 16:21:26 +0200 Subject: GStreamer on Android Studio In-Reply-To: References: Message-ID: <86739c83-1539-17a4-6662-70327d900e85@centricular.com> Hello, I have recently updated the Android tutorials in gst-docs, adding a gradle build system and documenting how to use it, the commit is The documentation changes haven't been published yet, but you can clone the repository to find the updated instructions in markdown/installing/for-android-development.md . If you want a standalone example, you can also look at , and follow the instructions in the README. Cheers, Mathieu On 06/27/2018 02:14 PM, Omar Moussa wrote: > Hello > I am working on a project that requires gstreamer and i am trying to implement it on android studio but can't get working. Is there a method I can use to at least run the tutorial programs? > I searched online a lot and couldn't find anything. > Your help is much appreciated. > Best regards, > Omar Moussa > > > _______________________________________________ > gstreamer-android mailing list > gstreamer-android at lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/gstreamer-android -- Mathieu Duponchelle ยท https://www.centricular.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From felipe.m.almeida at gmail.com Fri Jun 29 02:52:35 2018 From: felipe.m.almeida at gmail.com (Felipe Magno de Almeida) Date: Thu, 28 Jun 2018 23:52:35 -0300 Subject: GStreamer on Android Studio In-Reply-To: <86739c83-1539-17a4-6662-70327d900e85@centricular.com> References: <86739c83-1539-17a4-6662-70327d900e85@centricular.com> Message-ID: On Thu, Jun 28, 2018 at 11:21 AM, Mathieu Duponchelle wrote: > Hello, > > I have recently updated the Android tutorials in gst-docs, adding a gradle > build system > and documenting how to use it, the commit is > Hello Mathieu and Omar, Sorry for basically top-posting, but I'm just commenting on how I was able to compile the examples to android, so it is not a specific answer to any email in this thread. I had trouble compiling gst-docs with gradle using gstreamer from cerberos, I had to make quite a few modifications in cerberos for this to compile. A few modifications were: * gst-android-1.0 - tools.mk: I had to modify how it finds static libraries and how to generate the cmd command with that. * gettext-tools.recipe: Arch Linux uses some strange characters in Emacs version which breaks gettext compilation, had to add --without-emacs option to it. * zlib.recipe: It seems meson has a weird behavior with option 'both' to 'default-library' which in my case meant no static library was being generated at all. Add patch to change meson.build library() function to both_libraries(). * glib.recipe: Disable inotify (just for laziness), use both_libraries to use static libraries for gobject-2.0, gthread-2.0, gmodule-2.0, libgio, libxdgmime, libgnulib, libpcre, libcharset. With these modifications I was able to compile libgstreamer_android.so using all dependencies statically compiled, with the obvious exceptions offered by Android (-lm, -llog, GLES stuff, etc). Kind regards, > The documentation changes haven't been published yet, but you can clone the > repository > to find the updated instructions in > markdown/installing/for-android-development.md . > > If you want a standalone example, you can also look at > , > and follow the instructions in the README. Had not seen these other examples. Looks interesting. > Cheers, > Mathieu Regards, -- Felipe Magno de Almeida