View Single Post
Posts: 45 | Thanked: 45 times | Joined on Jul 2010 @ Berlin
#11
Originally Posted by twaelti View Post
It works well to record FM radio.
Did you test recaller with PR 1.2 ?

Maybe it is my python installation. But when I try to stop a recording, the icon disappears.

Furthermore, python complains about timeout_add_seconds():
Code:
AttributeError: 'module' object has no attribute 'timeout_add_seconds'
which I had to change to timeout_add()
Code:
vi /usr/lib/hildon-desktop/recaller.py

#self.timer = gobject.timeout_add_seconds(30, self.recordingreminder_cb)
self.timer = gobject.timeout_add(30000, self.recordingreminder_cb)
Here is my python-installation.
Code:
dpkg -l | grep python

gnome-python            2.18.0-2maemo6
hildon-desktop-python-loader 0.1.0-1maemo3
python                  2.5.2-3maemo4
python-alarm            0.1-0maemo3
python-all              2.5.2-3maemo4
python-cairo            1.4.12-1.2maemo2
python-central          0.6.11.1maemo2
python-dbus             0.83.0-1maemo3
python-gconf            2.26.1-1maemo1
python-gobject          2.16.1-1maemo2
python-gst0.10          0.10.14-2maemo5
python-gtk2             2.12.1-6maemo10
python-hildon           0.9.0-1maemo17
python-hildondesktop    0.1.0-1maemo3
python-minimal          2.5.2-3maemo4
python-notify           0.1.1-2maemo1
python-numeric          24.2-9maemo4
python-numpy            1:1.4.0-1maemo2
python-osso             0.4-0maemo5
python-protobuf         2.3.0-0maemo2
python-pygame           1.8.1release-0maemo3
python-support          1.0.6maemo1
python-xml              0.8.4-10.1maemo4
python2.5               2.5.4-1maemo6
python2.5-gobject       2.14.1-1osso2
python2.5-minimal       2.5.4-1maemo6
Maybe, you can see what is wrong with my installation.

Last edited by TorstenT; 2010-08-22 at 18:45.