Description | A set of Perl bindings for Gtk+ 2.0 and various related libraries |
GStreamer::Interfaces - Perl interface to the GStreamer Interfaces library
use GStreamer::Interfaces; # GStreamer::PropertyProbe my $sink = GStreamer::ElementFactory -> make(alsasink => "sink"); my $pspec = $sink -> get_probe_property("device"); if ($sink -> needs_probe($pspec)) { $sink -> probe_property($pspec); } my @devices = $sink -> get_probe_values($pspec); # GStreamer::XOverlay my $overlay = GStreamer::ElementFactory -> make(xvimagesink => "overlay"); $overlay -> set_xwindow_id($xid);
GStreamer::Interfaces provides access to some of the interfaces in the GStreamer Interfaces library. Currently, that's GStreamer::PropertyProbe and GStreamer::XOverlay.
Copyright (C) 2005-2006 by the gtk2-perl team