~ubuntu-branches/ubuntu/trusty/csound-manual/trusty-proposed

« back to all changes in this revision

Viewing changes to examples/pan2.csd

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Sateler
  • Date: 2011-08-01 22:21:58 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110801222158-90kslkp5ujci2f5d
Tags: 1:5.13~dfsg-1
* New upstream release
 - Add Menno Knevel to the copyright file
 - Refresh patch 2000-stripped-opcodes.diff
 - Update copyright hints file
* Update Vcs-* headers
* Bump Standards-Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<CsoundSynthesizer>
 
2
<CsOptions>
 
3
; Select audio/midi flags here according to platform
 
4
; Audio out   Audio in
 
5
-odac           -iadc    ;;;RT audio I/O
 
6
; For Non-realtime ouput leave only the line below:
 
7
; -o pan2.wav -W ;;; for file output any platform
 
8
</CsOptions>
 
9
 
 
10
<CsInstruments>
 
11
 
 
12
sr = 44100
 
13
ksmps = 20
 
14
nchnls = 2
 
15
 
 
16
giSine          ftgen   0, 0, 65537, 10, 1
 
17
 
 
18
instr 1
 
19
 
 
20
kline   line    0, p3, 1     ; straight line
 
21
ain     oscili  10000,440, giSine ; audio signal..
 
22
a1,a2   pan2    ain, kline   ; sent across image
 
23
        outs    a1, a2
 
24
 
 
25
 
 
26
endin
 
27
 
 
28
</CsInstruments>
 
29
<CsScore>
 
30
i1 0 5
 
31
e
 
32
</CsScore>
 
33
</CsoundSynthesizer>