]> git.parisson.com Git - timeside.git/commitdiff
fix lists again
authorGuillaume Pellerin <yomguy@parisson.com>
Wed, 1 Apr 2015 14:30:28 +0000 (16:30 +0200)
committerGuillaume Pellerin <yomguy@parisson.com>
Wed, 1 Apr 2015 14:31:08 +0000 (16:31 +0200)
Conflicts:
doc/source/ui.rst

doc/source/intro.rst
doc/source/ui.rst

index 5ddd7daccc884d3c64bbe8305b06bc0907712a9e..dee778b7f529c8e63aee58f9509f2184b2e88df4 100644 (file)
@@ -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(...)}
 
 
index 9371f0f4f846e5f9e103d62ec0a25c89fd05f83d..e718b9e5417ff162f23c55199df1efa6c7f9ac2c 100644 (file)
@@ -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