]> git.0d.be Git - jack_mixer.git/blob - test.py
Serialize prefader button states
[jack_mixer.git] / test.py
1 #!/usr/bin/env python
2 #
3 # This file is part of jack_mixer
4 #
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
10 #
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.
15 #
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.
19
20 import jack_mixer_c
21
22 mixer = jack_mixer_c.Mixer("test")
23
24 print("Channels count: %u" % mixer.channels_count)
25 channel = mixer.add_channel("Channel 1", True)
26
27 if channel.is_stereo:
28     channel_type = "Stereo"
29 else:
30     channel_type = "Mono"
31
32 channel_name = channel.name
33
34 print("%s channel \"%s\"" % (channel_type, channel_name))
35
36 print("Channel meter read %s" % repr(channel.meter))
37 print("Channels count: %u" % mixer.channels_count)
38
39 channel.remove()
40
41 print("Channels count: %u" % mixer.channels_count)
42