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
/* Example 2 - Compilation with Csound without CSD
* Author: Steven Yi <stevenyi@gmail.com>
* 2013.10.28
*
* In this example, we move from using an external CSD file to
* embedding our Csound ORC and SCO code within our Python project.
* Besides allowing encapsulating the code within the same file,
* using the CompileOrc() and CompileSco() API calls is useful when
* the SCO or ORC are generated, or perhaps coming from another
* source, such as from a database or network.
*/
extern crate csound;
use *;
/* Defining our Csound ORC code within a multiline String */
static orc: &str = "sr=44100
ksmps=32
nchnls=2
0dbfs=1
instr 1
aout vco2 0.5, 440
outs aout, aout
endin";
/*Defining our Csound SCO code */
static sco: &str = "i1 0 1";