gst1-java-core icon indicating copy to clipboard operation
gst1-java-core copied to clipboard

Java bindings for GStreamer 1.x

Results 20 gst1-java-core issues
Sort by recently updated
recently updated
newest added

In Gstreamer-java for 0.10 there was few examples with CustomSrc/CustomTrsnform/CustomSink. Could anyone provide example for gstreamer-java 1.XX (or a way ahead)? It was very useful and I would need it...

enhancement
help wanted

When I run Gst.init() i sometimes get an Invalid memory access Error thrown by `GST_API.gst_init_check(argv.argcRef, argv.argvRef, error)` But since INIT_COUNT is increased before that call Gst seems to be initialized...

For performance reasons it might be useful to support JNA direct mapping on some highly used methods (eg. Sample, Buffer methods used in AppSink callbacks). Doing some of this work...

enhancement

The current type mappers are problematic. Having lowlevel mappings using the highlevel types is inefficient. Having typed handlers / pointers in lowlevel would be more efficient, and also allow a...

Longer term we have been recommended by GStreamer developers to (re)look at auto-generation of bindings, but based on our existing GLib / GObject support. The initial stage of this will...

I have created a custom Element, and now I am trying to register it so I can call `ElementFactory.make` to get the element. I have called `Gst.registerClass(CustomElement.class)` to register it,...

I want to construct a new `org.freedesktop.gstreamer.Buffer` object with data from another Buffer. For example, with the python library, I could do something like this: ``` buffer = gst.Buffer(otherBuffer.data) ```...

I'd love to use Discoverer from Java, but afaict it's unsupported by GStreamer Java.

enhancement

It is very simple task to add Identity element from https://github.com/gstreamer-java/gstreamer1.x-java.git. I've added it in my project. May I do pull request here or there are special reasons to not...

Hi, I'm having trouble with element properties of enum types: is there a way to retrieve all possible values for an element enum property? For instance, for `audiotestsrc` element's `wave`...