Re: Are there Perl bindings for gstreamer-1.0?



On 22.04.2014 17:28, Maxwell Carey wrote:
Are there Perl bindings available for gstreamer-1.0? If not, are they in
the works? The GStreamer module on CPAN appears to be for gstreamer-0.10
only.

I don't know of any efforts, no.  If anyone is interested in creating
bindings, I'd suggest basing them on Glib::Object::Introspection.  This
should get you 95% of the way towards complete bindings:

  use Glib::Object::Introspection;
  Glib::Object::Introspection->setup (
    basename => 'Gst', version => '1.0', package => 'GStreamer');
  GStreamer::init ([$0, @ARGV]);

The rest would be overrides for convenience and backwards-compatibility.
 See Gtk3 for many examples.


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]