From: yomguy <> Date: Mon, 12 Jan 2009 10:13:02 +0000 (+0000) Subject: add some color scales in wav2png, update URLs, upgrade to 0.4.0 X-Git-Tag: 1.1~730 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=4a3f9e33f9f9bb90be99c627e607c7a86f0609ba;p=telemeta.git add some color scales in wav2png, update URLs, upgrade to 0.4.0 --- diff --git a/README b/README index dc87aa0f..c9adfee6 100644 --- a/README +++ b/README @@ -46,7 +46,7 @@ octave2.9-forge, python-tk, python-numpy, python-audiolab, libsndfile1 Installation and usage ====================== -See INSTALL and http://svn.parisson.org/telemeta for more informations. +See INSTALL and http://telemeta.org for more informations. Development @@ -65,7 +65,7 @@ Bugs and feedback If you find some bugs, please leave a ticket on this page: - http://svn.parisson.org/telemeta/newticket + http://telemeta.org/newticket You can also leave a ticket to request some new interesting features for the next versions. And even if Telemeta suits you, please give us some feedback (see §6.) ! @@ -75,7 +75,7 @@ Contact ======= Homepage: - http://svn.parisson.org/telemeta + http://telemeta.org Emails: Guillaume Pellerin , diff --git a/telemeta/__init__.py b/telemeta/__init__.py index 5c7bda93..2a209973 100644 --- a/telemeta/__init__.py +++ b/telemeta/__init__.py @@ -4,17 +4,17 @@ Telemeta Parisson SARL -U{http://svn.parisson.org/telemeta} +U{http://telemeta.org} @author: Guillaume Pellerin @author: Olivier Guilyardi """ __docformat__ = 'epytext en' -__version__ = '0.3.4' -__url__ = 'http://svn.parisson.org/telemeta' -__copyright__ = '(C) 2007-2008 Parisson SARL and Samalyse SARL' -__license__ = 'CeCILL' +__version__ = '0.4.0' +__url__ = 'http://telemeta.org' +__copyright__ = '(C) 2007-2009 Parisson SARL and Samalyse SARL' +__license__ = 'CeCILL2' __license_long__ = """ CeCILL FREE SOFTWARE LICENSE AGREEMENT diff --git a/telemeta/visualization/wav2png.py b/telemeta/visualization/wav2png.py index adf2dcb5..8b0cce3d 100755 --- a/telemeta/visualization/wav2png.py +++ b/telemeta/visualization/wav2png.py @@ -34,6 +34,11 @@ color_schemes = { 'spectrogram': [(0, 0, 0), (58/4,68/4,65/4), (80/2,100/2,153/2), (90,180,100), (224,224,44), (255,60,30), (255,255,255)] }, + 'iso': { + 'waveform': [(0,0,255), (0,255,255), (255,255,0), (255,0,0)], + 'spectrogram': [(0, 0, 0), (58/4,68/4,65/4), (80/2,100/2,153/2), (90,180,100), + (224,224,44), (255,60,30), (255,255,255)] + }, 'purple': { 'waveform': [(173,173,173), (147,149,196), (77,80,138), (108,66,0)], 'spectrogram': [(0, 0, 0), (58/4,68/4,65/4), (80/2,100/2,153/2), (90,180,100),