-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #681 from tjingboem/master
again 2 more Jacko examples
- Loading branch information
Showing
3 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<CsoundSynthesizer> | ||
<CsOptions> | ||
; Select audio/midi flags here according to platform | ||
-odac ;;;realtime audio out | ||
;-iadc ;;;uncomment -iadc if realtime audio input is needed too | ||
; For Non-realtime ouput leave only the line below: | ||
; -o JackoAudioIn.wav -W ;;; for file output any platform | ||
</CsOptions> | ||
<CsInstruments> | ||
sr = 48000 ; The control rate must be BOTH a power of 2 (for Jack) | ||
ksmps = 128 | ||
nchnls = 2 | ||
0dbfs = 1 | ||
; by Menno Knevel - 2023 | ||
JackoInit "default", "csound" | ||
JackoAudioInConnect "system:capture_1", "audioin" ; create 1 Audio input & connect from soundcard | ||
JackoOn | ||
instr 1 ; use Csound as an effect processor | ||
asig JackoAudioIn "audioin" | ||
aout nreverb asig, 2, .3 | ||
outs aout, aout | ||
endin | ||
</CsInstruments> | ||
<CsScore> | ||
i 1 0 100 | ||
e | ||
</CsScore> | ||
</CsoundSynthesizer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters