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

« back to all changes in this revision

Viewing changes to examples/lposcil3.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    No messages
 
5
-odac           -iadc     -d     ;;;RT audio I/O
 
6
; For Non-realtime ouput leave only the line below:
 
7
; -o lposcil3.wav -W ;;; for file output any platform
 
8
</CsOptions>
 
9
<CsInstruments>
 
10
 
 
11
; Initialize the global variables.
 
12
sr = 44100
 
13
kr = 4410
 
14
ksmps = 10
 
15
nchnls = 1
 
16
 
 
17
; Instrument #1.
 
18
instr 1
 
19
   kamp = 30000
 
20
   kcps = 1
 
21
   ifn = 1
 
22
  kloop = 0
 
23
  kend line 35000, p3, 10000
 
24
 
 
25
 
 
26
   a1 lposcil3 kamp, kcps, kloop, kend, ifn
 
27
   out a1
 
28
endin
 
29
 
 
30
 
 
31
</CsInstruments>
 
32
<CsScore>
 
33
 
 
34
; Table #1: an audio file.
 
35
; Its table size is deferred,
 
36
; and format taken from the soundfile header.
 
37
f 1 0 0 1 "beats.wav" 0 0 0
 
38
 
 
39
; Play Instrument #1 for 6 seconds.
 
40
i 1 0 6
 
41
e
 
42
 
 
43
 
 
44
</CsScore>
 
45
</CsoundSynthesizer>