From: Thomas Fillon Date: Fri, 16 Jan 2015 11:39:13 +0000 (+0100) Subject: Doc: Replace remaining references to yomguy/TimeSide by Parisson/TimeSide X-Git-Tag: 0.7^2~18^2~1 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=880d9d07c6d5776b2c2a4665f4387bdfde8ad73f;p=timeside.git Doc: Replace remaining references to yomguy/TimeSide by Parisson/TimeSide --- diff --git a/NEWS.rst b/NEWS.rst index 7cff7b4..0cd0207 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -18,7 +18,7 @@ News * Results are now stored in pipe.results as as dictionnary of AnalyzerResults * Update various processors * Prevent duplication of processor in the pipe (i.e. processors sharing the same class and parameters). This also fix #60. - * Update of Travis CI scripts https://travis-ci.org/yomguy/TimeSide/ + * Update of Travis CI scripts https://travis-ci.org/Parisson/TimeSide/ 0.5.6 @@ -36,7 +36,7 @@ News * Yaafe analyzer: simplify adaptation of process frames from TimeSide to Yaafe * LimsiSad: add a default value for parameter sad_model * Fix various NaN and Inf and PEP8 issues also many PyFlake warnings - * Full `Travis integration `_ with tests and test coverage through `coveralls.io `_ + * Full `Travis integration `_ with tests and test coverage through `coveralls.io `_ * Thanks to all contributors! * WARNING: some of the processor paths used in your app could have moved between 0.5.4 and 0.5.5. Check them with timeside.core.processors(). Note that it is now advised to use the timeside.core.get_processor() method to instantiate the processors with their respective id as argument. * UPGRADING from the sources: please remove all .pyc files from your repository. diff --git a/README.rst b/README.rst index 83b5581..713a31f 100644 --- a/README.rst +++ b/README.rst @@ -7,8 +7,8 @@ TimeSide : open web audio processing framework .. |travis_master| image:: https://secure.travis-ci.org/Parisson/TimeSide.png?branch=master :target: https://travis-ci.org/Parisson/TimeSide/ -.. |coveralls_master| image:: https://coveralls.io/repos/yomguy/TimeSide/badge.png?branch=master - :target: https://coveralls.io/r/yomguy/TimeSide?branch=master +.. |coveralls_master| image:: https://coveralls.io/repos/Parisson/TimeSide/badge.png?branch=master + :target: https://coveralls.io/r/Parisson/TimeSide?branch=master .. |version| image:: https://pypip.in/version/TimeSide/badge.png :target: https://pypi.python.org/pypi/TimeSide/ @@ -60,12 +60,12 @@ Dive in To list all available plugins: -.. testcleanup:: +.. testcleanup:: os.remove('sweep.ogg') os.remove('waveform.png') -.. doctest:: +.. doctest:: >>> import timeside >>> timeside.core.list_processors() # doctest: +SKIP @@ -73,7 +73,7 @@ To list all available plugins: Define some processors: -.. doctest:: +.. doctest:: >>> from timeside.core import get_processor >>> from timeside.core.tools.test_samples import samples @@ -85,13 +85,13 @@ Define some processors: Then run the *magic* pipeline: -.. doctest:: +.. doctest:: >>> (decoder | grapher | analyzer | encoder).run() Render the grapher results: -.. doctest:: +.. doctest:: >>> grapher.render(output='waveform.png') @@ -374,8 +374,8 @@ Development .. |travis_dev| image:: https://secure.travis-ci.org/Parisson/TimeSide.png?branch=dev :target: https://travis-ci.org/Parisson/TimeSide/ -.. |coveralls_dev| image:: https://coveralls.io/repos/yomguy/TimeSide/badge.png?branch=dev - :target: https://coveralls.io/r/yomguy/TimeSide?branch=dev +.. |coveralls_dev| image:: https://coveralls.io/repos/Parisson/TimeSide/badge.png?branch=dev + :target: https://coveralls.io/r/Parisson/TimeSide?branch=dev Docker (recommended) diff --git a/doc/slides/timeside_slides.html b/doc/slides/timeside_slides.html index 433e14d..26fcf47 100644 --- a/doc/slides/timeside_slides.html +++ b/doc/slides/timeside_slides.html @@ -194,7 +194,7 @@ sudo python setup.py install

 
-git clone https://github.com/yomguy/TimeSide.git
+git clone https://github.com/Parisson/TimeSide.git
 
 cd TimeSide
 
@@ -211,7 +211,7 @@ tests/run_all_tests
 
     

API

- IProcessor + IProcessor

 class IProcessor(Interface):
     """Common processor interface"""
@@ -277,7 +277,7 @@ class IProcessor(Interface):
 
     

API

- IDecoder + IDecoder

 class IDecoder(IProcessor):
     """Decoder driver interface. Decoders are different of encoders in that
@@ -307,7 +307,7 @@ class IDecoder(IProcessor):
 
     

API

- IAnalyzer + IAnalyzer

 class IAnalyzer(IProcessor):
     """Media item analyzer driver interface. This interface is abstract, it doesn't
@@ -335,7 +335,7 @@ class IAnalyzer(IProcessor):
 
     

API

- AnalyzerResultContainer + AnalyzerResultContainer

 class AnalyzerResultContainer(object):
 
@@ -536,7 +536,7 @@ analyzer.results()
      

Links

  • Official website and wiki
  • -
  • Source code on GitHub
  • +
  • Source code on GitHub
  • API
  • Telemeta project : web audio CMS
  • Aubio project
  • diff --git a/doc/source/dev.rst b/doc/source/dev.rst index 8ce6fda..3657844 100644 --- a/doc/source/dev.rst +++ b/doc/source/dev.rst @@ -6,8 +6,8 @@ Development .. |travis_dev| image:: https://secure.travis-ci.org/Parisson/TimeSide.png?branch=dev :target: https://travis-ci.org/Parisson/TimeSide/ -.. |coveralls_dev| image:: https://coveralls.io/repos/yomguy/TimeSide/badge.png?branch=dev - :target: https://coveralls.io/r/yomguy/TimeSide?branch=dev +.. |coveralls_dev| image:: https://coveralls.io/repos/Parisson/TimeSide/badge.png?branch=dev + :target: https://coveralls.io/r/Parisson/TimeSide?branch=dev Docker (recommended) diff --git a/doc/source/intro.rst b/doc/source/intro.rst index f870163..1ac68ea 100644 --- a/doc/source/intro.rst +++ b/doc/source/intro.rst @@ -7,8 +7,8 @@ TimeSide : open web audio processing framework .. |travis_master| image:: https://secure.travis-ci.org/Parisson/TimeSide.png?branch=master :target: https://travis-ci.org/Parisson/TimeSide/ -.. |coveralls_master| image:: https://coveralls.io/repos/yomguy/TimeSide/badge.png?branch=master - :target: https://coveralls.io/r/yomguy/TimeSide?branch=master +.. |coveralls_master| image:: https://coveralls.io/repos/Parisson/TimeSide/badge.png?branch=master + :target: https://coveralls.io/r/Parisson/TimeSide?branch=master .. |version| image:: https://pypip.in/version/TimeSide/badge.png :target: https://pypi.python.org/pypi/TimeSide/ @@ -60,7 +60,7 @@ Dive in To list all available plugins: -.. testcleanup:: +.. testcleanup:: import os os.remove('sweep.ogg') diff --git a/setup.py b/setup.py index 43d48a9..ab9c3f3 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ KEYWORDS = 'audio analysis features extraction MIR transcoding graph visualize p setup( name='TimeSide', - url='https://github.com/yomguy/TimeSide/', + url='https://github.com/Parisson/TimeSide/', description="open web audio processing framework", long_description=open('README.rst').read(), author="Guillaume Pellerin, Paul Brossier, Thomas Fillon, Riccardo Zaccarelli, Olivier Guilyardi",