<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>midi2sc</name>
<shortdesc>Control SuperCollider Synths with MIDI</shortdesc>
<description>=======
midi2sc
=======

Installation
============

You can install ``midi2sc`` with ``easy_install``::

  $ easy_install midi2sc

However, you also need to install pkaudio_ and its dependencies.

.. _pkaudio: http://trac2.assembla.com/pkaudio


Usage
=====

``midi2sc`` allows you to assign MIDI controllers to SuperCollider_
``SynthDefs``.

.. _SuperCollider: http://supercollider.sourceforge.net

Configuration
-------------

An example configuration::

  [SOSkick]
  midi_channel = 01
  001 = amp_mul=            AbsoluteControl(min=0.0, max=1.27, start_vel=100.0)
  106 = mod_freq=           IDC(min=2.0, max=20.0, steps=50, value=2.0)
  107 = mod_index=          IDC(min=2.0, max=20.0, steps=50, value=2.0)
  108 = beater_noise_level= IDC(min=2.0, max=20.0, steps=50, value=18.0)
  109 = decay=              IDC(min=0.05, max=1.0, steps=70, value=0.3)
  noteon_args = out=18

This configuration will create and assign 7 controls: one of type
``AbsoluteControl``, four of type ``IDC`` (IncDecControl).  The two
controls implicitly created are a ``NoteOnControl`` and a
``NoteOffControl``.

The ``001`` midi controller is usually the modulation wheel.  Here
it's bound to the ``amp_mul`` parameter of an ``SOSkick`` SynthDef.
``min`` is the value sent to the SuperCollider Synth when the wheel is
at its lowest position, ``max`` the value at its highest position.

The ``106`` midi controller is bound to an endless encoder that sends
relative values between ``01 to 64`` for increment and ``127 to 065``
for decrement.  There's 50 ``steps`` between the ``min`` and ``max``
value.  And the value at which we start is ``2.0``.  This corresponds
to what the M-Audio Axiom User Guide calls ``2's Complement from 0 /
Relative (2's Complement)``.

There's also dedicated controls for pitch bend and after touch.

SuperCollider
-------------

This is how a SynthDef could look like that uses the configuration
from before::

  SynthDef("SOSkick", {
    arg out = 0, freq = 50, mod_freq = 6.5, mod_index = 19.5,
    decay = 0.1, amp = 0.8, beater_noise_level = 0.001, amp_mul = 1.0;
    var x;

    // do stuff...
    Out.ar(out, x);
  });

Make sure you have your SuperCollider server up and SynthDefs loaded
before you start ``midi2sc``.

Starting midi2sc
----------------

On the command-line, ``midi2sc`` is run like this::

  $ midi2sc

This assumes that you have a ``midi2sc.ini`` configuration file in the
current working directory.  You can also provide this filename as an
option on the command-line.  Refer to the built-in help for more
options::

  $ midi2sc --help

``midi2sc`` will ask you for a MIDI port to bind to, and then it'll
start a GUI that shows sliders for all controls and finally drop you
into an interactive shell with access to variables like dictionary of
control ``handlers`` and the ``save_presets`` and ``load_presets``
functions.  To save presets (values from all controllers) from a file
on the Python shell and then load them again later, you write::

  &gt;&gt;&gt; save_presets('presets1.pickle', midi_in)
  &gt;&gt;&gt; # ... time passes
  &gt;&gt;&gt; load_presets('presets0.pickle', midi_in)

You can also load a new ``midi2sc.ini`` configuration::

  &gt;&gt;&gt; handlers.update(configure.read('midi2sc2.ini'))

Screenshot
----------

The top left window is the ``midi2sc`` Python shell.  Below is the
``midi2sc`` GUI with a column of sliders for each synth.  On the right
are QJackCtl_ connections and Seq24_:

.. image:: http://danielnouri.org/media/midi2sc-01.png
   :alt: Screenshot of midi2sc

.. _QJackCtl: http://qjackctl.sourceforge.net/
.. _Seq24: http://www.filter24.org/seq24/

Development Status
==================

``midi2sc`` is somewhat mature, and I use it.  At the same time it's a
big hack and probably not thread-safe.

Change Log
----------

0.1 - 2009-06-30
````````````````

  - First release.</description>
<homepage rdf:resource="http://pypi.python.org/pypi/midi2sc" />
<maintainer><foaf:Person><foaf:name>Daniel Nouri</foaf:name>
<foaf:mbox_sha1sum>686355885d055fc3fefd3de55fe087f4516a4631</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>0.1</revision></Version></release>
</Project></rdf:RDF>