[pygtk] [ANNOUNCEMENT] Tivion 0.0.3 "Opiron" released

2009-12-12 Thread Angel Guzman Maeso
My development called Tivion and codenamed "Opiron", is a player streaming TV channels and radio internationally, which is based on Python and PyGTK, using Mplayer backend player, includes many new features that were quite unexpected since last release more than two months. Some of the most import

Re: [pygtk] PyGTK and visual python integration

2009-12-13 Thread Angel Guzman Maeso
2009/12/7 Michele Mattioni > Hello PyGTK list, > > I'm trying to use Visual Python [1] with PyGTK. > > My goal is to run the PyGTK app from an ipython console with the > interactive loop, to launch the visual python and to be able to process the > input coming from the console. > > I was able to

[pygtk] How to make a POST request?

2010-05-18 Thread Angel Guzman Maeso
Hi, I new using python + webkit. I need make a POST request with webkit, but I dont know how to it. I have this example with urllib: #!/usr/bin/python import urllib2, urllib import httplib server = 'server.somesite.com' data = {'name' : 'shakaran', 'password' : 'Only_I_know'} d = urllib.urlenc

[pygtk] PyObject fails with Gst on signal sync-message::element

2011-10-27 Thread Angel Guzman Maeso
Hi everyone, I am migrating a old code written with GTK+ 2.X to GTK 3+ for play a .ogv video with gstreamer. The problem seems that the signal "sync-message::element" is never launched (but if it is launched sync-message). So, as result we cannot attach a Gtk.DrawingArea() inside of another windo

Re: [pygtk] PyObject fails with Gst on signal sync-message::element

2011-10-29 Thread Angel Guzman Maeso
Please, anybody can help me? I search on pygstreamer and GIR files code and changelog and there is not reference for changes related with syn-message::element. ___ pygtk mailing list pygtk@daa.com.au http://www.daa.com.au/mailman/listinfo/pygtk Read the

Re: [pygtk] PyObject fails with Gst on signal sync-message::element

2011-11-01 Thread Angel Guzman Maeso
2011/10/29 Pietro Battiston > Il giorno sab, 29/10/2011 alle 10.57 +0200, Angel Guzman Maeso ha > scritto: > > Please, anybody can help me? I search on pygstreamer and GIR files > > code and changelog and there is not reference for changes related with > > syn-message::el

Re: [pygtk] PyObject fails with Gst on signal sync-message::element

2011-11-01 Thread Angel Guzman Maeso
2011/11/1 Tomeu Vizoso > Hi, > > what version of GStreamer are you using? I think only 0.11 (future > 1.0) can be used through introspection. There are other programs that > are being ported to introspection and that use GStreamer, such as > Pitivi, I would look at them for ideas. > > Regards, >

Re: [pygtk] PyObject fails with Gst on signal sync-message::element

2011-11-01 Thread Angel Guzman Maeso
2011/11/1 Tomeu Vizoso > On Tue, Nov 1, 2011 at 19:37, Angel Guzman Maeso > wrote: > > Where I can find 0.11 (1.0) for download and compile on Ubuntu? I need to > > fix this ASAP (I am doing a app for my dissertation). > > If you are in such a hurry, may be better to

Re: [pygtk] PyObject fails with Gst on signal sync-message::element

2011-11-03 Thread Angel Guzman Maeso
2011/11/2 Tomeu Vizoso > OYou don't need gst-python any more, that's the point of the move to > introspection: https://live.gnome.org/GObjectIntrospection/Architecture > > For building gstreamer master from git: http://gstreamer.freedesktop.org/ > > Good luck, > > Tomeu > Hi again, This is my c

Re: [pygtk] Problem with "gtk.Window().maximize()"

2013-01-20 Thread Angel Guzman Maeso
2013/1/19 Ajay Garg > Hi all. > > If a gtk.Window has been maximized, it seems that the "resize()" method > doesn't take effect thereafter. > I will illustrate with the following code snippets :: > > > > a) > ### > import gtk > impor