From 94cdb92e9d7c4c33f6ad994584f9e78c03f8d8ee Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 9 Dec 2013 11:46:42 +0100 Subject: [PATCH] update news --- README.rst | 29 +++++++++++++++++++-------- doc/source/install.rst | 4 ++-- doc/source/intro.rst | 6 +++--- doc/source/news.rst | 13 ++++++++++++ timeside/grapher/waveform_centroid.py | 2 +- 5 files changed, 40 insertions(+), 14 deletions(-) diff --git a/README.rst b/README.rst index 8025a10..c4cbfa3 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ TimeSide : open web audio processing framework ============================================== .. image:: https://secure.travis-ci.org/yomguy/TimeSide.png?branch=master - :target: http://travis-ci.org/yomguy/TimeSide/ + :target: https://travis-ci.org/yomguy/TimeSide/ TimeSide is a set of python components enabling audio analysis, imaging, transcoding and streaming. Its high-level API has been designed to enable complex processing on big media data corpus. Its simple plugin architecture can be adapted to various usecases. @@ -46,6 +46,7 @@ IDecoder --------- * FileDecoder [gst_dec] + * ArrayDecoder [array_dec] IGrapher --------- @@ -61,9 +62,8 @@ IGrapher IAnalyzer --------- - * IValueAnalyzer - - Level [level] - - MeanDCShift [mean_dc_shift] + * Level [level] + * MeanDCShift [mean_dc_shift] * AubioTemporal [aubio_temporal] * AubioPitch [aubio_pitch] * AubioMfcc [aubio_mfcc] @@ -80,9 +80,22 @@ IAnalyzer News ===== +0.5.2 + + * Add a general launch script "timeside-launch" (see "User interface") + * Add some pre-processing decorators to downmix and filter inputs of processors (see analyzer.waveform for ex) + * Add a fake numpy decoder to setup multi-pass process pipes + * Add beat confidence to aubio_temporal + * Add AAC encoder (gstreamer voaacenc plugin needed) + * Add UUIDs to the file URI and to all processors + * Add a Debian repository with all dependencies for i386 and amd64 architectures + * Fix WebM encoder + * Fix MP3 muxing + * Fix various minor bugs + 0.5.1 - * Add *parent* procesor list to Processor + * Add *parent* processor list to Processor * Simplify and optimize the grapher system * Add Grapher abstract generic class * Add a UUID property to Processor @@ -225,7 +238,7 @@ On Fedora and Red-Hat: $ sudo pip install timeside -On other system, you'll need to install all dependencies and then:: +Otherwise, you can also install all dependencies and then use pip:: $ sudo pip install timeside @@ -235,7 +248,7 @@ Dependencies python (>=2.7), python-setuptools, python-gst0.10, gstreamer0.10-plugins-good, gstreamer0.10-gnonlin, gstreamer0.10-plugins-ugly, python-aubio, python-yaafe, python-simplejson, python-yaml, python-h5py, -python-scipy +python-scipy, python-matplotlib Platforms @@ -299,7 +312,7 @@ Sponsors and Patners * `CNRS `_ (National Center of Science Research, France) * `Huma-Num `_ (big data equipment for digital humanities, ex TGE Adonis) * `CREM `_ (french National Center of Ethomusicology Research, France) - * `Université Pierre et Marie Curie `_ (UPMC Paris, France) + * `Université Pierre et Marie Curie `_ (UPMC Paris, France) * `ANR `_ (CONTINT 2012 project : DIADEMS) * `MNHN `_ : Museum National d'Histoire Naturelle (Paris, France) diff --git a/doc/source/install.rst b/doc/source/install.rst index f3b9f26..7f69ed3 100644 --- a/doc/source/install.rst +++ b/doc/source/install.rst @@ -22,7 +22,7 @@ On Fedora and Red-Hat: $ sudo pip install timeside -On other system, you'll need to install all dependencies and then:: +Otherwise, you can also install all dependencies and then use pip:: $ sudo pip install timeside @@ -32,7 +32,7 @@ Dependencies python (>=2.7), python-setuptools, python-gst0.10, gstreamer0.10-plugins-good, gstreamer0.10-gnonlin, gstreamer0.10-plugins-ugly, python-aubio, python-yaafe, python-simplejson, python-yaml, python-h5py, -python-scipy +python-scipy, python-matplotlib Platforms diff --git a/doc/source/intro.rst b/doc/source/intro.rst index 46c6dd9..7b8b76e 100644 --- a/doc/source/intro.rst +++ b/doc/source/intro.rst @@ -46,6 +46,7 @@ IDecoder --------- * FileDecoder [gst_dec] + * ArrayDecoder [array_dec] IGrapher --------- @@ -61,9 +62,8 @@ IGrapher IAnalyzer --------- - * IValueAnalyzer - - Level [level] - - MeanDCShift [mean_dc_shift] + * Level [level] + * MeanDCShift [mean_dc_shift] * AubioTemporal [aubio_temporal] * AubioPitch [aubio_pitch] * AubioMfcc [aubio_mfcc] diff --git a/doc/source/news.rst b/doc/source/news.rst index 9757745..7143bbd 100644 --- a/doc/source/news.rst +++ b/doc/source/news.rst @@ -1,6 +1,19 @@ News ===== +0.5.2 + + * Add a general launch script "timeside-launch" (see "User interface") + * Add some pre-processing decorators to downmix and filter inputs of processors (see analyzer.waveform for ex) + * Add a fake numpy decoder to setup multi-pass process pipes + * Add beat confidence to aubio_temporal + * Add AAC encoder (gstreamer voaacenc plugin needed) + * Add UUIDs to the file URI and to all processors + * Add a Debian repository with all dependencies for i386 and amd64 architectures + * Fix WebM encoder + * Fix MP3 muxing + * Fix various minor bugs + 0.5.1 * Add *parent* processor list to Processor diff --git a/timeside/grapher/waveform_centroid.py b/timeside/grapher/waveform_centroid.py index 5f2d145..6746dfc 100644 --- a/timeside/grapher/waveform_centroid.py +++ b/timeside/grapher/waveform_centroid.py @@ -46,7 +46,7 @@ class WaveformCentroid(Waveform): @staticmethod @interfacedoc def name(): - return "Spectral centroid waveform" + return "Waveform spectral" @interfacedoc def setup(self, channels=None, samplerate=None, blocksize=None, totalframes=None): -- 2.39.5