1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
=======================================
Cecilia5 - the audio processing toolbox
=======================================
.. image:: doc-en/source/images/Cecilia_splash.png
:align: center
Cecilia is an audio signal processing environment. Cecilia lets you create
your own GUI (grapher, sliders, toggles, popup menus) using a simple syntax.
Cecilia comes with many original builtin modules for sound effects and synthesis.
Previously written in tcl/tk, Cecilia (version 4, named Cecilia4) was entirely
rewritten in Python/wxPython and uses the Csound API for communicating between
the interface and the audio engine. At this time, version 4.2 is the last
release of this branch.
Cecilia5 now uses the pyo audio engine created for the Python programming
language. pyo allows a much more powerfull integration of the audio engine to
the graphical interface. Since it's a standard python module, there is no need
to use an API to communicate with the interface.
Official web site
-----------------
To download the latest version of Cecilia5, go to
`the official web site! <http://ajaxsoundstudio.com/software/cecilia/>`_
User documentation
------------------
To consult the user online documentation, go to
`ajaxsoundstudio.com <http://ajaxsoundstudio.com/cecilia5doc/index.html>`_.
Requirements
------------
**Minimum versions (for running Cecilia5 from sources):**
* `Python 3.5 <https://www.python.org/downloads/release/python-353/>`_ or
`Python 3.6 <https://www.python.org/downloads/release/python-362/>`_ (prefered).
The programming language used to code the application.
* `WxPython 4.0.0 (Phoenix) <https://github.com/wxWidgets/Phoenix>`_
The toolkit used to create the graphical interface. (install with `pip install wxPython`)
* `pyo 0.8.7 <http://ajaxsoundstudio.com/software/pyo/>`_
The audio engine which gives his power to Cecilia.
* `numpy <https://pypi.python.org/pypi/numpy>`_
Array processing module for numbers. Used to accelerate the grapher display.
Install the last stable version.
Screenshot
----------
.. image:: doc-en/source/images/snapshot.png
:width: 100%
|