From: Guillaume Pellerin Date: Wed, 1 Apr 2015 14:30:28 +0000 (+0200) Subject: fix lists again X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=66a3b109e201e20e853f712a5bfdc4b654665ee9;p=timeside.git fix lists again Conflicts: doc/source/ui.rst --- diff --git a/doc/source/intro.rst b/doc/source/intro.rst index 5ddd7da..dee778b 100644 --- a/doc/source/intro.rst +++ b/doc/source/intro.rst @@ -71,38 +71,38 @@ First, list all available plugins: .. doctest:: - >>> import timeside.core - >>> timeside.core.list_processors() +>>> import timeside.core +>>> timeside.core.list_processors() Define some processors: .. doctest:: - >>> from timeside.core import get_processor - >>> from timeside.core.tools.test_samples import samples - >>> wavfile = samples['sweep.wav'] - >>> decoder = get_processor('file_decoder')(wavfile) - >>> grapher = get_processor('waveform_simple')() - >>> analyzer = get_processor('level')() - >>> encoder = get_processor('vorbis_encoder')('sweep.ogg') +>>> from timeside.core import get_processor +>>> from timeside.core.tools.test_samples import samples +>>> wavfile = samples['sweep.wav'] +>>> decoder = get_processor('file_decoder')(wavfile) +>>> grapher = get_processor('waveform_simple')() +>>> analyzer = get_processor('level')() +>>> encoder = get_processor('vorbis_encoder')('sweep.ogg') Then run the *magic* pipeline: .. doctest:: - >>> (decoder | grapher | analyzer | encoder).run() +>>> (decoder | grapher | analyzer | encoder).run() Render the grapher results: .. doctest:: - >>> grapher.render(output='waveform.png') +>>> grapher.render(output='waveform.png') Show the analyzer results: .. doctest:: - >>> print 'Level:', analyzer.results # doctest: +ELLIPSIS +>>> print 'Level:', analyzer.results # doctest: +ELLIPSIS Level: {'level.max': AnalyzerResult(...)} diff --git a/doc/source/ui.rst b/doc/source/ui.rst index 9371f0f..e718b9e 100644 --- a/doc/source/ui.rst +++ b/doc/source/ui.rst @@ -57,23 +57,26 @@ Web player TimeSide comes with a smart and pure **HTML5** audio player. Features: + * embed it in any audio web application * stream, playback and download various audio formats on the fly * synchronize sound with text, bitmap and vectorial events * seek through various semantic, analytic and time synced data * fully skinnable with CSS style -Screenshot: - .. image:: https://raw.github.com/Parisson/TimeSide/master/doc/images/timeside_player_01.png +.. image:: https://raw.github.com/Parisson/TimeSide/master/doc/slides/img/timeside_player_01.png Examples of the player embeded in the Telemeta open web audio CMS: + * http://parisson.telemeta.org/archives/items/PRS_07_01_03/ * http://archives.crem-cnrs.fr/items/CNRSMH_I_1956_002_001_01/ Development documentation: + * https://github.com/Parisson/TimeSide/wiki/Ui-Guide TODO list: + * zoom * layers