Add jack_mix_box, a minimalistic jack mixer (no UI, controlled by MIDI)
[jack_mixer.git] / test.py
blobe93f80a005f21c177909e5cdec92ddc66ede87e5
1 #!/usr/bin/env python
3 # This file is part of jack_mixer
5 # Copyright (C) 2006 Nedko Arnaudov <nedko@arnaudov.name>
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; version 2 of the License
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 import jack_mixer_c
22 mixer = jack_mixer_c.Mixer("test")
24 print "Channels count: %u" % mixer.channels_count
25 channel = mixer.add_channel("Channel 1", True)
27 if channel.is_stereo:
28 channel_type = "Stereo"
29 else:
30 channel_type = "Mono"
32 channel_name = channel.name
34 print "%s channel \"%s\"" % (channel_type, channel_name)
36 print "Channel meter read %s" % repr(channel.meter)
37 print "Channels count: %u" % mixer.channels_count
39 channel.remove()
41 print "Channels count: %u" % mixer.channels_count