-
http://ruby-gnome2.sourceforge.jp/hiki.cgi?Gst%3A%3ABin describes a method called "iterate", but "iterate" doesn't exist in reality.
Please update the Gst::Bin docs to match the actual code.
Regards //Johan.
2010-01-06 17:12:43 UTC by johanwalles
-
Another thing should be treated as another topic.
This bug should be closed.
2010-01-06 14:25:14 UTC by ktou
-
This page needs to be updated:
http://ruby-gnome2.sourceforge.jp/hiki.cgi?Gst%3A%3ABin
It says that Gst::Bin has an iterate method, but that's false.
It was the Gst::Bin page I thought should be generated from the Ruby sources.
2010-01-06 14:16:48 UTC by johanwalles
-
Thanks!
It seems that tutorial isn't suitable for documentation in source code. The Wiki is good place for this case.
2010-01-06 14:12:52 UTC by ktou
-
Good point. Hello world tutorial fixed:
http://ruby-gnome2.sourceforge.jp/hiki.cgi?tut-gst-helloworld
I don't feel comfy with editing the class documentation though, someone else who's more familiar with the code will have to do that. Or shouldn't the class documentation really be generated from the Ruby sources?.
2010-01-06 14:07:26 UTC by johanwalles
-
Could you fix the Wiki content?.
2010-01-06 12:04:00 UTC by ktou
-
http://ruby-gnome2.sourceforge.jp/hiki.cgi?GLib%3A%3AObject
Accessing properties is done through object.set_property("key", "value") and object.get_property("key").
I'd like to access properties by doing object["key"] = "value" and object["key"].
2010-01-06 10:38:40 UTC by johanwalles
-
Thanks Vincent! Using that main loop I was able to play a short movie.
I then found this thread that describes how the EOS / error notification works:
http://www.ruby-forum.com/topic/121928#710057
Regards //Johan.
2010-01-05 20:01:31 UTC by johanwalles
-
Hi.
Instead of iterate method, you should use a loop.
mainloop=GLib::MainLoop.new
begin
mainloop.run
#rescue Interrupt
ensure
pipeline.stop
end.
2010-01-05 13:26:13 UTC by vinc-mai
-
Version information: I'm using libgst-ruby 0.19.3-1 from Debian Testing:
http://packages.debian.org/squeeze/libgst-ruby.
2010-01-04 07:30:53 UTC by johanwalles