Overview
Comment: | Altered the sample-based instruments to ine Csound string formatting instead of a billion if clauses to choose what file to play |
---|---|
Timelines: | family | ancestors | descendants | both | develop |
Files: | files | file ages | folders |
SHA1: |
4f872339ff41a69d874c3519a88dc83b |
User & Date: | brian on 2011-11-07 01:39:19 |
Other Links: | branch diff | manifest | tags |
Context
2011-11-15
| ||
22:09 | Replaced csound support with midi support check-in: 0c3fb3e27f user: brian tags: develop | |
15:47 | Attempted to make a csound based on midi. Failed. check-in: daa0ddb3ad user: brian tags: feature/midi | |
2011-11-07
| ||
01:39 | Altered the sample-based instruments to ine Csound string formatting instead of a billion if clauses to choose what file to play check-in: 4f872339ff user: brian tags: develop | |
2011-11-03
| ||
19:23 | Added a very, very bad set of violin samples check-in: 8293931a34 user: brian tags: develop | |
Changes
Modified cfg.orc from [a0811d420c] to [feddf36ca4].
1 2 3 4 | sr=44100 ksmps=20 nchnls=1 | | | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < | | < | | > > > > > > > > > > < | < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 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 | sr=44100 ksmps=20 nchnls=1 instr 1 ; kcps = 220 ; icps = 220 ; ifn = 0 ; imeth = p4 ;; asig pluck 0.7, cpspch(p5), cpspch(p6), ifn, imeth, .1, 10 asig pluck p4, cpspch(p5), cpspch(p6), p7, p8 p9 p10 out asig endin instr 2 kenv linen p4, .1, p3, .2; envelope asound oscili kenv, cpspch(p5), p6; oscillator out asound endin instr 3 ; pylassigni "note", p5 ; pylruni "sample_file = 'samples/bass/%.2f.wav' % note" ; Ssample_file pylevali "sample_file" Ssample_file sprintf "samples/bass/%.2f.wav", p5 asig diskin2 Ssample_file, 1 outs asig endin instr 4 aFMinst foscili p4, cpspch(p5), p6, p7, p8, p9 endin instr 5 Ssample_file sprintf "samples/bass/%.2f.wav", p5 asig diskin2 Ssample_file, 1 outs asig endin |
Modified spiffyscore.py from [c67f427fd6] to [390f3e8450].
︙ | ︙ | |||
101 102 103 104 105 106 107 | "u": ["C/4 C/4 C/4 C/4"], }, }, }, }, "sync_test": { "body": { | | > | | | | | | | | | | > | > > > > > > > > > > > > | | 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | "u": ["C/4 C/4 C/4 C/4"], }, }, }, }, "sync_test": { "body": { # "lead_instr": { # Instrument 'melody' # "score_line": "i1 %(time)f %(duration)f 7000 %(octave)d.%(note)s %(octave)d.%(note)s 0 6", ## "score_line": "i5 %(time)f %(duration)f 7000 %(octave)d.%(note)s", # "octave": 7, # "duration": 30, # "grammars": { # Notes for this instrument to use in this piece ## "u": ["A ^A B C ^C D ^D E F ^F G ^G"], # "u": ["A/2, B/2, C/2 D/2 (u)", "D/2' D/2' D/2' D/2' (v)"], # "v": ["C/2 C/2 C/2 C/2 (w)"], # "w": ["E/2 F/2 E/2 F/2 (u)"], # }, # }, "follow_instr": { # Instrument 'melody' # "score_line": "i2 %(time)f %(duration)f 7000 %(octave)d.%(note)s 1", "score_line": "i3 %(time)f %(duration)f 7000 %(octave)d.%(note)s", # "sync": "lead_instr", "octave": 2, "duration": 30, "grammars": { # Notes for this instrument to use in this piece # "u": ["A ^A B C ^C D ^D E F ^F G ^G"], "u": ["E F G E (v)"], "v": ["G A A A (e)", "G A A A (v)"], "e": ["B A G A (u)"], }, }, # "instr2": { # Instrument 'melody' # "score_line": "i1 %(time)f %(duration)f 7000 %(octave)d.%(note)s %(octave)d.%(note)s 0 6", # "score_line": "i1 %(time)f %(duration)f 7000 %(octave)d.%(note)s %(octave)d.%(note)s", # "octave": 5, # "duration": 30, # "grammars": { # Notes for this instrument to use in this piece ## "u": ["A ^A B C ^C D ^D E F ^F G ^G"], # "u": ["A/2, B/2, C/2 D/2 (u)", "D/2' D/2' D/2' D/2' (v)"], # "v": ["C/2 C/2 C/2 C/2 (w)"], # "w": ["E/2 F/2 E/2 F/2 (u)"], # }, # }, }, }, } print '''f1 0 512 10 1 f2 0 8192 10 .24 .64 .88 .76 .06 .5 .34 .08 f3 0 1025 10 1 t 0 60 ''' section_start = 0 # for section in ["verse1", "verse2"]: for section in ["sync_test"]: print "; Section " + section subsection_start = section_start |
︙ | ︙ |