blob: 21535bdc46fb304de616850fa88b2eb103fa7e04 (
plain)
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
|
<CsoundSynthesizer>
<CsOptions>
-odac
</CsOptions>
<CsInstruments>
sr = 44100
kr = 4410
nchnls = 2
0dbfs = 1
; basic oscillator to see how audio is affected
instr oscil
a1 oscil 0.1, 440
outs a1, a1
endin
; issue a POST request at init time and display the output
instr irate
prints "init time post: may cause audio dropout\n\n"
ires, Sres curlpost "http://csound.1bpm.net/_curl_plugin_example/post", "Hello from Csound"
print ires
prints Sres
prints "\n"
turnoff
endin
; issue a POST request at k-rate and display the output
instr krate
prints "k-rate threaded post: should not affect audio\n\n"
kdone, kres, Sres curlpostk "http://csound.1bpm.net/_curl_plugin_example/post", "Hello from Csound"
if (kdone == 1) then
printf "res %d ; %s\n", kdone, kres, Sres
turnoff
endif
endin
</CsInstruments>
<CsScore>
i"oscil" 0 5
i"irate" 1 1
i"krate" 3 1
</CsScore>
</CsoundSynthesizer>
|