Recaller

Contents

Overview

Recaller is a widget(for the Maemo desktop) which allows your N900 to record all kind of audio ("Rec-All" :-) Starting with version 2.0 (currently in extras-devel), it has the following features:

  • Auto-recording of GSM calls
  • Useable as dictaphone
  • Record device audio (e.g. FM or internet radio, game sounds)
  • Configurable Save Folder
  • Autonaming of files (including call partner number)

PLEASE donate if recaller is useful to you. Donations give me motivation, encouragement and happiness (plus pocket money :-)

Help

If there is no big red button on the desktop after installing the widget, simply reboot your phone.

Please use the settings mode of the Desktop to configure recaller to your needs. You can change the following settings:

  • Save folder location (where recaller puts its recordings)
  • Audio source when manually recording (with Autorec enabled, recaller will automatically switch to Phone or Bluetooth recording mode) (I have found this to be the opposite, what you set here is what autorec will use, otherwise manual will use system [DaveQB])
  • File Format (AAC is available on all phones, is compact and clear, playback on most computers possible, but uses high CPU. Other available formats [FLAC, WAV] might not work for everybody or use too much storage).
  • Autorec automatically starts the recording of GSM calls (in- and outgoing)
  • Show reminders puts up a banner every 30 seconds to remind you of an ongoing recording). Icon on desktop also changes to green when a recording is ongoing.

Screenshot

Not much to see, just a big red "REC" icon on the desktop.

Authors

  • Main author: Tom Waelti
  • Thanks to various pymaemo and gstreamer gurus :-)

ChangeLog

The current changelog is available through the package viewer.

  • 2.0.0: All your wishes come true. GSM autorecording, larger icon, better status display, configurable save folder and encoding format. Uses the SHAD framework.
  • 0.4.0: Simple version, no config options, available in Extras

Roadmap

High priority

  • Address book name for the recorded phone calls files.

Low priority

  • Other codecs
  • Improved auto-record timings
  • Auto-record for other voice protocolls

Wishlist

Use this space to add possible feature wishes:

  • WISH (YOUR NAME)
  • Incoming/Outcoming icon for the recorded phone calls files.
  • Hide all notifications. (epilido)
  • Allow hidden folder structure E.g. files to be stored in .recordings (epilido)
  • Different widget icon according to mode chosen. I keep one icon for recording calls, one for dictaphone. E.g. you could use the current icon, but overlaying "c", "d" or "s" for widget configured for calls, dictaphone or system.
  • hide recorded calls from media player
  • customizable icon size

Bugs

Use this paragraph to report possible bugs. If you encounter a problem with the widget, please remove/delete it from the Home screen, then open X-Term and launch the widget manually by typing:

python2.5 /usr/lib/hildon-desktop/recaller.py

You can now see some output from the widget. Now switch to the Home screen and work with the widget - you can then control the output in X-Term and report any errors visible.

  • Doesn't install unless dpkg --force-all due to trying to overwrite /usr/share/icons/48x48/hildon/mclock.png (NORMAN) Solved in 2.0.0-2
  • Config dialog doesn't pop up yet (NORMAN)) Solved in 2.0.0-2
  • In 2.0.0-2 I am able to record as a dictaphone just one time. The next time the icon stays red and recording is not possible. (fmonera at gmail)
  • Package doesn't list/install dependencies. I installed the -devel version and got "ImportError: No module named gconf" (viraptor at gmail) Fixed in later builds (twaelti)
  • It makes two files of one and the same phone conversation.
  • Doesn't save recordings when save folder is customized.
  • Auto-registration of GSM calls do not work with anonymous call. Please try running from X-Term and report any errors - I'm unable to test this :-) (twaelti)
  • I'm connected with my N900 to a Swedish operator through a commercial switchboard called Centrex. Centrex sends callerid with stars '*' in them. Like this: +46887326863*180. This makes recaller not able to write to file. I did a quick hack to fix it (I think). Here's the patch.
--- recaller.py.old     2010-04-25 18:23:12.000000000 +0200
+++ recaller.py 2010-04-25 18:23:59.320022067 +0200
@@ -15,6 +15,7 @@
 import string
 import time
 import gconf
+import re
 
 import dbus
 
@@ -26,6 +27,7 @@
 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
 dbus.mainloop.glib.threads_init()
 
+
 APP_NAME = APP_TITLE.lower()
 LOGO = '/opt/tomch.com/%s/%s_64.png' % (APP_NAME, APP_NAME)
 GCONFPATH = "/apps/Maemo/tomch.com/%s" % APP_NAME
@@ -266,6 +268,8 @@
         finalName = os.path.join(self.folder,"Rec_%s-%s.%s" % (self.startTime, time.strftime("%H%M%S"),self.fileformat.lower()))
       else:
         finalName = os.path.join(self.folder,"Rec_%s_%s-%s.%s" % (self.caller,self.startTime,time.strftime("%H%M%S"),self.fileformat.lower()))
+      nostar = re.compile( '(\*)')
+      finalName = nostar.sub( '_ext', finalName)
       self.log(finalName)
       os.rename(self.fileName, finalName)
       self.isStopped=True

(Bengt Gördén)