Hi, I was trying the Hello World tutorial for Ruby-Gstreamer. However, when I try to iterate over the pipeline at the end with pipeline.iterate, it says that the method was not found. However, the documentation says that the method does exist. How do I find out what to do now? Regards, Ajith
on 18.08.2007 08:30
on 22.02.2008 22:12
Max Payne wrote: > Hi, > > I was trying the Hello World tutorial for Ruby-Gstreamer. However, when > I > try to iterate over the pipeline at the end with pipeline.iterate, it > says > that the method was not found. However, the documentation says that the > method does exist. How do I find out what to do now? > > Regards, > Ajith Hello Ajith, i have the same problem :-/ did u finde any solution ? thx & bye Philipp
on 23.02.2008 01:24
In <06fc0c5a919ba26fa69d628480a483fd@ruby-forum.com> "Re: [ruby-gnome2-devel-en] Gst::Pipeline : iterate : no such method" on Fri, 22 Feb 2008 22:12:21 +0100, Philipp Goetzinger <ruby-forum-incoming@andreas-s.net> wrote: > > Regards, > > Ajith > > Hello Ajith, > i have the same problem :-/ > did u finde any solution ? Use GLib::MainLoop#run. Thanks, -- kou
on 03.03.2008 13:24
jepp mainloop#run is available, and working thanks Kouhei Sutou wrote: > In <06fc0c5a919ba26fa69d628480a483fd@ruby-forum.com> > "Re: [ruby-gnome2-devel-en] Gst::Pipeline : iterate : no such method" > on Fri, 22 Feb 2008 22:12:21 +0100, > Philipp Goetzinger <ruby-forum-incoming@andreas-s.net> wrote: > >> > Regards, >> > Ajith >> >> Hello Ajith, >> i have the same problem :-/ >> did u finde any solution ? > > Use GLib::MainLoop#run. > > > Thanks, > -- > kou
on 27.07.2008 10:39
>> Use GLib::MainLoop#run. mind giving a newbie the answer to this? What exactly are you supposed to change: "while pipeline.iterate do end" to? Thanks, Erm Philipp Goetzinger wrote: > > jepp mainloop#run is available, and working > > thanks > > > Kouhei Sutou wrote: >> In <06fc0c5a919ba26fa69d628480a483fd@ruby-forum.com> >> "Re: [ruby-gnome2-devel-en] Gst::Pipeline : iterate : no such method" >> on Fri, 22 Feb 2008 22:12:21 +0100, >> Philipp Goetzinger <ruby-forum-incoming@andreas-s.net> wrote: >> >>> > Regards, >>> > Ajith >>> >>> Hello Ajith, >>> i have the same problem :-/ >>> did u finde any solution ? >> >> Use GLib::MainLoop#run. >> >> >> Thanks, >> -- >> kou
on 02.08.2008 08:43
Hi, In <ad7de09a0d78e6b1593862f01d65c9b5@ruby-forum.com> "Re: [ruby-gnome2-devel-en] Gst::Pipeline : iterate : no such method" on Sun, 27 Jul 2008 10:39:59 +0200, Eugene Miller <ruby-forum-incoming@andreas-s.net> wrote: > >> Use GLib::MainLoop#run. > > mind giving a newbie the answer to this? > > What exactly are you supposed to change: > "while pipeline.iterate do end" > to? loop = GLib::MainLoop.new(nil, false) pipeline.bus.add_watch do |bus, message| case message.type when Gst::Message::EOS loop.quit when Gst::Message::ERROR p message.parse loop.quit end true end pipeline.play loop.run gstreamer/sample/audio-player.rb will help you. Thanks, -- kou