fguida / ossbuild-vs2010

Automatically exported from code.google.com/p/ossbuild-vs2010
Other
0 stars 0 forks source link

Failed to query latency #9

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Hi,
First of all I wanted to thank you for your fantastic job in creating this 
build!
What steps will reproduce the problem?
this is my approach from what I could do from the tutorials, I am new to 
gstreamer and it's approach so forgive me if there are (silly)mistakes in here:
m_audioPipeline = new Pipeline("__________Receiving Audio Pipeline__________");
recvSource = Gst.ElementFactory.Make("udpsrc", "__________Receiver 
UDP__________");
recvSource["port"] = this.Port;// this is 5000

recvAudioResample = ElementFactory.Make("audioresample", "resample for 
receiver");
Element caps = Gst.ElementFactory.Make("capsfilter", "stream description");
caps["caps"] = Gst.Caps.FromString("audio/x-raw-int, channels=2, rate=44100, 
width=16, depth=16");
recvAudioConvert = ElementFactory.Make("audioconvert", "audio converter for 
receiver");
recvSink = Gst.ElementFactory.Make("autoaudiosink", "direct sound receiver");

m_audioPipeline.Add(recvSource, recvAudioResample, caps, recvAudioConvert, 
recvSink);
recvSource.Link(recvAudioResample);
recvAudioResample.Link(caps);
caps.Link(recvAudioConvert);
recvAudioConvert.Link(recvSink);
m_audioPipeline.AddNotification(PadAddedToAudio);
m_audioPipeline.SetState(State.Playing);
What is the expected output? What do you see instead?
I am expecting the pipeline to initialise and work.

What version of the product are you using? On what operating system?
https://code.google.com/p/ossbuild-vs2010/downloads/detail?name=gstreamer-lgpl-2
0130426.zip&can=2&q=
Running on Windows 8.1 Pro x64

Please provide any additional information below.
please see the attached log file if you search for "jaworekplay" that's when 
the receiver udp starts

Thanks

Original issue reported on code.google.com by JaworekP...@googlemail.com on 21 Jan 2015 at 11:44

GoogleCodeExporter commented 9 years ago
No idea. I don't do much with this version anymore, maybe try the official 
GStreamer 1.0 builds here?
http://gstreamer.freedesktop.org/data/pkg/windows/1.4.5/

Original comment by Petteri.Aimonen on 22 Jan 2015 at 3:21

GoogleCodeExporter commented 9 years ago
Hi,
Thanks for quick reply :-)
I am using the C# version so I would have to rebuild the gstreamer-sharp.dll 
and as far as I read it can be done on Linux, unfortunately I don't have access 
to Linux machine :-(. Is there an existing build with gstreamer 1.+?
If there isn't is there a tutorial or step by step instructions how to build 
the ossbuild with new gstreamer ?
Thanks in advance.

Original comment by JaworekP...@googlemail.com on 22 Jan 2015 at 3:40

GoogleCodeExporter commented 9 years ago
ossbuild is outdated, new build system is called cerbero. I think it has 
gstreamer-sharp also.

Original comment by Petteri.Aimonen on 23 Jan 2015 at 5:23