How To Code "fakesink -v " in C

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

How To Code "fakesink -v " in C

Wes Miller
Administrator
I depend on "fakesink -v" when using gst-launch.  How do I set the "-v" if  I am coding in C rather than at the gst-launch cmdline?  

Wes
Reply | Threaded
Open this post in threaded view
|

Re: How To Code "fakesink -v " in C

Marco Ballesio
Hi,

as the syntax may suggest, -v is a parameter of gst-launch, not a property of the fakesink element. Said so, you cann what the code does with the -v option here:

http://cgit.freedesktop.org/gstreamer/gstreamer/tree/tools/gst-launch.c#n838

Regards

On Tue, Nov 2, 2010 at 5:15 PM, Wes Miller <[hidden email]> wrote:

I depend on "fakesink -v" when using gst-launch.  How do I set the "-v" if  I
am coding in C rather than at the gst-launch cmdline?

Wes
--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/How-To-Code-fakesink-v-in-C-tp3023843p3023843.html
Sent from the GStreamer-devel mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Nokia and AT&T present the 2010 Calling All Innovators-North America contest
Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
$10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store
http://p.sf.net/sfu/nokia-dev2dev
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel


------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a
Billion" shares his insights and actions to help propel your
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: How To Code "fakesink -v " in C

Wes Miller
Administrator
Ahhh, thank you.

I have never seen a reference  to fakesink without the -v attached to it as "fakesink -v" which led me to think the -v belonged to fakesink, not to the pipeline.  Having grown up on IBM's Railroad Syntax Diagrams, I've just never completely grasped *ix ones.

Warmly,

Wes