I am trying to display video buffers on an android. I am using the media codec API released in Android 4.1 Jelly Bean.
The sample goes like this:
MediaCodec codec = MediaCodec.createDecoderByType(type);
codec.configure(format, ...);
configure…
Is there a way to limit gstreamer's udpsink, if I'm sending out data without demultiplexing it?
I have a pipe that needs to send out the stream unmultiplexed.
filesrc ! tee name=t ! tsdemux ! ffdec_h264 ! videosink t. udpsink
Where the main concern…
Do anyone have any idea if the gstreamer-java-1.6.jar downloadable from https://code.google.com/p/gstreamer-java/downloads/list is compatible with gstreamer windows 1.6.1 binaries? I installed both and setup the eclipse environment but somehow it…
Before we start allow me to just say that I know that it is possible to integrate Gstreamer into Android natively using C code as done in the Android Tutorials themselves.
This question is not related to simply just getting Gstreamer running on…
I'm trying to stream audio from a Raspberry Pi to a VM.
The Raspberry Pi has a microphone plugged into it and its pipeline is like
so (IP/hostname info redacted):
gst-launch-1.0 -ev alsasrc device=plughw:1,0 ! audioconvert ! rtpL24pay ! udpsink…
I'm trying to use GStreamer Java Binding on Raspberry Pi to play some dynamic audio data which is Opus encoded. I'm almost done. My final issue is I cannot have GStreamer clean up nicely when the data reaching the end. My testing code is as…
I am trying to run up-to-date 'GStreamer 1.0' tutorials (http://cgit.freedesktop.org/~slomo/gst-sdk-tutorials/tree/gst-sdk/tutorials).
I have already installed GStreamer 1.4.4 for OS X (http://gstreamer.freedesktop.org/data/pkg/osx/1.4.4/), and I…
I am trying to get the following pipeline to work in gstreamer-java (using gstreamer-0.10):
"gst-launch-0.10 filesrc location=big_buck_bunny_480p_surround-fix.avi ! decodebin2 ! ffmpegcolorspace ! autovideosink"
This pipeline works on the command…
I have built gstreamer_ndk_bundle for platforms 8, 10 and 13 without any errors and problems. Now I am trying to make gstreamer-java work on android, and I guess I made it work. JNA works great (tested it on my lib), I have added all missing…
I am trying to get the rtp feed through UDP using streamer in react native, I did tried making the bridge using Java and also I am trying react native streamer but not able to do it in Android.
I have installed react native streamer and tried…
I want to mix multiple wav file. Files can have different start time.
For that, I set an offset on the pad of the mixer.
I am using gstreamer-java.
This is an example of the timeline with two files. There is a 10 sec offset for file 2.
It works…