cfg/gutim_full Data file updates.
This commit is contained in:
parent
c8aaa5962d
commit
0dbec6cb09
8093
src/cwtest/cfg/gutim_full/10_min_demo/10_min_demo.csv
Normal file
8093
src/cwtest/cfg/gutim_full/10_min_demo/10_min_demo.csv
Normal file
File diff suppressed because it is too large
Load Diff
280
src/cwtest/cfg/gutim_full/10_min_demo/gen_score.py
Normal file
280
src/cwtest/cfg/gutim_full/10_min_demo/gen_score.py
Normal file
@ -0,0 +1,280 @@
|
||||
import csv
|
||||
import copy
|
||||
|
||||
def no_cvt(x):
|
||||
return x
|
||||
|
||||
def int_cvt( x):
|
||||
return int(x) if x else None
|
||||
|
||||
def float_cvt(x):
|
||||
return float(x) if x else None
|
||||
|
||||
def parse_csv( fname ):
|
||||
|
||||
rowL = []
|
||||
cvtD = {"opcode":no_cvt,
|
||||
"meas":int_cvt,
|
||||
"index":int_cvt,
|
||||
"voice":int_cvt,
|
||||
"loc":int_cvt,
|
||||
"eloc":int_cvt,
|
||||
"oloc":int_cvt,
|
||||
"tick":int_cvt,
|
||||
"sec":float_cvt,
|
||||
"dur":float_cvt,
|
||||
"rval":float_cvt,
|
||||
"dots":int_cvt,
|
||||
"sci_pitch":no_cvt,
|
||||
"dmark":no_cvt,
|
||||
"dlevel":int_cvt,
|
||||
"status":int_cvt,
|
||||
"d0":int_cvt,
|
||||
"d1":int_cvt,
|
||||
"bar":int_cvt,
|
||||
"section":int_cvt,
|
||||
"bpm":int_cvt,
|
||||
"grace":no_cvt,
|
||||
"tie":no_cvt,
|
||||
"onset":no_cvt,
|
||||
"pedal":no_cvt,
|
||||
"dyn":no_cvt,
|
||||
"even":no_cvt,
|
||||
"tempo":no_cvt}
|
||||
|
||||
|
||||
sostN = 0
|
||||
dampN = 0
|
||||
|
||||
with open(fname) as f:
|
||||
rdr = csv.DictReader(f)
|
||||
|
||||
for row in rdr:
|
||||
|
||||
r = { label:cvtD[label](val) for label,val in row.items() }
|
||||
|
||||
if r['opcode'] == 'ped':
|
||||
if r['d0'] == 64:
|
||||
dampN += 1
|
||||
else:
|
||||
sostN ++ 1
|
||||
|
||||
|
||||
rowL.append(r)
|
||||
|
||||
print('damp:',dampN,'sost:',sostN);
|
||||
return rowL
|
||||
|
||||
def gen_cut_list( rowL, meas_cutL ):
|
||||
|
||||
cutL = []
|
||||
in_sect_flag = False
|
||||
sectL_idx = 0
|
||||
beg_cut_row_idx = None
|
||||
|
||||
for i,r in enumerate(rowL):
|
||||
|
||||
if r['opcode'] == 'bar':
|
||||
|
||||
if not in_sect_flag and r['meas'] == meas_cutL[sectL_idx][0]:
|
||||
in_sect_flag = True
|
||||
beg_cut_row_idx = i
|
||||
|
||||
elif in_sect_flag and r['meas'] == (meas_cutL[sectL_idx][1]+1):
|
||||
in_sect_flag = False
|
||||
|
||||
cutL.append( (meas_cutL[sectL_idx][0], meas_cutL[sectL_idx][1], beg_cut_row_idx, i+1) )
|
||||
sectL_idx += 1
|
||||
|
||||
if sectL_idx >= len(meas_cutL):
|
||||
break
|
||||
|
||||
return cutL
|
||||
|
||||
|
||||
def print_approx_cut_list( rowL, approx_cutL ):
|
||||
|
||||
for cut in approx_cutL:
|
||||
print( rowL[cut[2]]['meas'],rowL[cut[2]]['loc'], rowL[cut[3]]['meas'],rowL[cut[3]]['loc'] )
|
||||
|
||||
|
||||
def gen_gate_matrices( rowL ):
|
||||
|
||||
noteM = []
|
||||
pedalM = []
|
||||
damp_idx = 0
|
||||
sost_idx = 1
|
||||
|
||||
noteStateL = [False]*128
|
||||
pedalStateL = [False]*2
|
||||
|
||||
note_on_cnt = 0
|
||||
pedal_on_cnt = 0
|
||||
note_off_cnt = 0
|
||||
pedal_off_cnt = 0
|
||||
|
||||
for i,r in enumerate(rowL):
|
||||
if r['opcode'] == 'non' and r['d0']:
|
||||
noteStateL[r['d0']] = True
|
||||
note_on_cnt += 1
|
||||
|
||||
elif r['opcode'] == 'nof':
|
||||
noteStateL[r['d0']] = False
|
||||
note_off_cnt += 1
|
||||
|
||||
elif r['opcode'] == 'ped':
|
||||
down_fl = r['d1']!=0
|
||||
ped_idx = damp_idx if r['d0']==64 else sost_idx
|
||||
pedalStateL[ped_idx] = down_fl
|
||||
|
||||
if down_fl:
|
||||
pedal_on_cnt += 1
|
||||
else:
|
||||
pedal_off_cnt += 1
|
||||
|
||||
noteM.append(copy.copy(noteStateL))
|
||||
pedalM.append(copy.copy(pedalStateL))
|
||||
|
||||
print("notes:",note_on_cnt,note_off_cnt,"pedals:",pedal_on_cnt,pedal_off_cnt)
|
||||
return noteM, pedalM
|
||||
|
||||
def insert_off_message( xL, gateL, opcode ):
|
||||
|
||||
cnt = 0
|
||||
|
||||
# take the first note-off row as a prototype note off record
|
||||
proto_row = None
|
||||
for r in xL:
|
||||
if r['opcode'] == opcode:
|
||||
proto_row = copy.copy(r)
|
||||
proto_row['meas'] = xL[-1]['meas']
|
||||
proto_row['sec'] = xL[-1]['sec']
|
||||
proto_row['tick'] = 0;
|
||||
proto_row['d0'] = 0;
|
||||
break;
|
||||
|
||||
for i,flag in enumerate(gateL):
|
||||
if flag:
|
||||
|
||||
proto_row['index'] = xL[-1]['index'] + 1
|
||||
|
||||
if opcode == 'nof':
|
||||
proto_row['d0'] = i
|
||||
|
||||
elif opcode == 'ped':
|
||||
proto_row['d1'] = 64 if i==0 else 66
|
||||
|
||||
xL.append( copy.copy(proto_row) )
|
||||
cnt += 1
|
||||
|
||||
return cnt
|
||||
|
||||
|
||||
def fix_meas_numbers( rowL ):
|
||||
meas = 1
|
||||
|
||||
src_measL = sorted(set([ r['meas'] for r in rowL]))
|
||||
meas_mapD = { meas:i+1 for i,meas in enumerate(src_measL) }
|
||||
|
||||
for row in rowL:
|
||||
row['meas'] = meas_mapD[ row['meas'] ]
|
||||
|
||||
|
||||
|
||||
|
||||
def gen_raw_output_list( rowL, cutL, noteM, pedalM ):
|
||||
|
||||
def _update_secs( rL, base_secs ):
|
||||
dsec = 0.0
|
||||
sec0 = None
|
||||
sec = 0
|
||||
for i,r in enumerate(rL):
|
||||
if r['sec']:
|
||||
if sec0:
|
||||
dsec = r['sec'] - sec0
|
||||
sec0 = r['sec']
|
||||
sec += dsec
|
||||
r['sec'] = sec + base_secs
|
||||
|
||||
outL = []
|
||||
|
||||
base_secs = 0.0
|
||||
|
||||
for b_meas,e_meas,bri,eri in cutL:
|
||||
|
||||
xL = rowL[bri:eri]
|
||||
note_cnt = insert_off_message(xL,noteM[eri-1],'nof')
|
||||
pedal_cnt = insert_off_message(xL,pedalM[eri-1],'ped')
|
||||
|
||||
_update_secs(xL,base_secs)
|
||||
|
||||
base_secs = xL[-1]['sec']
|
||||
|
||||
outL += xL
|
||||
|
||||
print(b_meas,e_meas,note_cnt,pedal_cnt,xL[-1]['opcode'])
|
||||
|
||||
return outL
|
||||
|
||||
|
||||
def write_output_file( fname, rowL ):
|
||||
|
||||
fieldnamesL = ["opcode","meas","index","voice","loc","eloc","oloc","tick","sec","dur","rval","dots","sci_pitch","dmark","dlevel","status","d0","d1","bar","section","bpm","grace","tie","onset","pedal","dyn","even","tempo"]
|
||||
|
||||
with open(fname,"w") as f:
|
||||
wtr = csv.DictWriter(f,fieldnamesL)
|
||||
|
||||
wtr.writeheader()
|
||||
for r in rowL:
|
||||
wtr.writerow(r)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
"""
|
||||
1 - 7
|
||||
215 - 218
|
||||
241 - 247
|
||||
272 - 283
|
||||
290 - 295 (first beat of 290 is converted to a rest)
|
||||
333 - 343
|
||||
352 - 365 (tie to first note in 352 is deleted)
|
||||
375 - 391
|
||||
398 - 400
|
||||
405 - 433 (last chord is converted to whole notes with fermata, measure is now 9/4)
|
||||
11m
|
||||
|
||||
|
||||
"""
|
||||
|
||||
meas_cutL = [
|
||||
(1,7),
|
||||
(215,218),
|
||||
(241,247),
|
||||
(272,283),
|
||||
(290,295),
|
||||
(333,343),
|
||||
(352,365),
|
||||
(375,391),
|
||||
(398,400),
|
||||
(405,433)
|
||||
]
|
||||
|
||||
in_fname = "/home/kevin/src/cwtest/src/cwtest/cfg/gutim_full/data/score/20231028/temp.csv"
|
||||
out_fname = "10_min_demo.csv"
|
||||
|
||||
|
||||
rowL = parse_csv(in_fname)
|
||||
|
||||
cutL = gen_cut_list(rowL,meas_cutL)
|
||||
|
||||
print_approx_cut_list(rowL,cutL)
|
||||
|
||||
if True:
|
||||
|
||||
noteM, pedalM = gen_gate_matrices( rowL )
|
||||
|
||||
outL = gen_raw_output_list( rowL, cutL, noteM, pedalM )
|
||||
|
||||
fix_meas_numbers(outL)
|
||||
|
||||
write_output_file(out_fname,outL)
|
22
src/cwtest/cfg/gutim_full/10_min_demo/section_boundaries.txt
Normal file
22
src/cwtest/cfg/gutim_full/10_min_demo/section_boundaries.txt
Normal file
@ -0,0 +1,22 @@
|
||||
| 5918 5919 |
|
||||
| 5974 5975 |
|
||||
| 5982 5985 |
|
||||
| 5999 6000 |
|
||||
| 6004 6005 |
|
||||
| 6022 6025 |
|
||||
| 6028 6032 |
|
||||
| 6038 6051 |
|
||||
| 6056 6057 |
|
||||
| 6060 6071 |
|
||||
|
||||
meas loc meas loc oloc oloc
|
||||
1 0 8 61 1 to 26
|
||||
215 4973 218 5163 2074 to 2190 section: 5974
|
||||
241 6004 248 6394 2602 to 2818
|
||||
272 7936 284 8448 3554 to 3832
|
||||
290 8677 296 8821 3962 to 4047
|
||||
333 10398 344 10753 4862 to 5036
|
||||
352 11255 366 11760 5315 to 5597
|
||||
375 12271 392 13217 5936 to 6425
|
||||
398 13558 401 13732 6608 to 6677
|
||||
405 13953 434 15354 6781
|
@ -1,401 +0,0 @@
|
||||
{
|
||||
test: {
|
||||
|
||||
preset_sel: {
|
||||
|
||||
params: {
|
||||
score_fn: "~/src/cwtest/src/cwtest/cfg/gutim_full/temp.csv",
|
||||
|
||||
perfDirL: [
|
||||
|
||||
{
|
||||
dir:"~/src/cwtest/src/cwtest/cfg/gutim_full/data1/beck1",
|
||||
fname:"play_score_w_vt.csv",
|
||||
vel_table:[
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
dir:"~/src/cwtest/src/cwtest/cfg/gutim_full/data1/beck2",
|
||||
fname:"play_score_w_vt.csv",
|
||||
vel_table:[
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
dir:"~/src/cwtest/src/cwtest/cfg/gutim_full/data1/taka1",
|
||||
fname:"play_score_w_vt.csv",
|
||||
vel_table:[
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
dir:"~/src/cwtest/src/cwtest/cfg/gutim_full/data1/taka2",
|
||||
fname:"play_score_w_vt.csv",
|
||||
vel_table:[
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
dir:"~/src/cwtest/src/cwtest/cfg/gutim_full/data/score",
|
||||
fname:"temp.csv",
|
||||
vel_table: [
|
||||
{ "device":"piano", "name":"spirio" }, // VSL uses Ivory vel table
|
||||
{ "device":"sampler", "name":"ivory" }
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
]
|
||||
|
||||
|
||||
record_dir: "~/src/cwtest/src/cwtest/cfg/gutim_full/preset_select",
|
||||
record_fn: "m1_458_trans_5",
|
||||
record_fn_ext: "txt",
|
||||
|
||||
flow_proc_dict_fn: "~/src/cwtest/src/cwtest/cfg/gutim_full/flow_proc_dict.cfg",
|
||||
vel_table_fname: "~/src/cwtest/src/cwtest/cfg/gutim_full/vel_table/vel_table_perf.json"
|
||||
vel_table_backup_dir: "~/src/cwtest/src/cwtest/cfg/gutim_full/vel_table/backup"
|
||||
|
||||
//crossFadeSrate: 48000.0, // TODO: move to flow cfg. and set via 'system default sample rate'
|
||||
crossFadeCount: 3,
|
||||
|
||||
beg_play_loc: 1, //0, //12431, // coda 11499,
|
||||
end_play_loc: 16354, //59, //14726, // coda 12426,
|
||||
live_mode_fl: false,
|
||||
dflt_perf_label: "beck_1_5",
|
||||
run_dur_secs: 0,
|
||||
|
||||
enable_recording_fl: false,
|
||||
midi_record_dir: "~/src/cwtest/src/cwtest/cfg/gutim_full/midi_record",
|
||||
midi_record_folder: "shiau_uen",
|
||||
sf_reset_loc: 1,
|
||||
|
||||
score_follower: {
|
||||
enable_flag: false,
|
||||
score_csv_fname: "/home/kevin/src/cwtest/src/cwtest/cfg/gutim_full/temp.csv",
|
||||
search_area_locN: 10,
|
||||
key_wnd_locN: 7,
|
||||
track_print_fl: false, // print output from the sfTrack unit
|
||||
track_results_backtrack_fl: false,
|
||||
|
||||
|
||||
dyn_ref: [
|
||||
{ mark: "silent", level:0, vel:1 },
|
||||
{ mark:"pppp-", level:1, vel:3 },
|
||||
{ mark:"pppp", level:2, vel:5 },
|
||||
{ mark:"pppp+", level:3, vel:7 },
|
||||
{ mark:"ppp-", level:4, vel:10 },
|
||||
{ mark:"ppp", level:5, vel:15 },
|
||||
{ mark:"ppp+", level:6, vel:20 },
|
||||
{ mark:"pp-", level:7, vel:25 },
|
||||
{ mark:"pp", level:8, vel:30 },
|
||||
{ mark:"pp+", level:9, vel:35 },
|
||||
{ mark:"p-", level:10, vel:40 },
|
||||
{ mark:"p", level:11, vel:45 },
|
||||
{ mark:"p+", level:12, vel:50 },
|
||||
{ mark:"mp-", level:13, vel:55 },
|
||||
{ mark:"mp", level:14, vel:60 },
|
||||
{ mark:"mp+", level:15, vel:65 },
|
||||
{ mark:"mf-", level:16, vel:70 },
|
||||
{ mark:"mf", level:17, vel:75 },
|
||||
{ mark:"mf+", level:18, vel:80 },
|
||||
{ mark:"f-", level:19, vel:85 },
|
||||
{ mark:"f", level:20, vel:90 },
|
||||
{ mark:"f+", level:21, vel:95 },
|
||||
{ mark:"ff", level:22, vel:100 },
|
||||
{ mark:"ff+", level:23, vel:105 },
|
||||
{ mark:"fff", level:24, vel:115 },
|
||||
{ mark:"fff+", level:25, vel:120 },
|
||||
{ mark:"ffff", level:26, vel:125 },
|
||||
]
|
||||
|
||||
},
|
||||
|
||||
|
||||
presets: {
|
||||
preset_labelL: [ "dry", "a", "b", "c", "d", "f1", "f2", "f3", "f4", "g", "ga", "g1a", "g1d" ],
|
||||
|
||||
alt_labelL: [ "A","B","C","D","E","F","G" ],
|
||||
|
||||
default_gain: 1.0,
|
||||
default_wet_dry_gain: 0.5,
|
||||
default_fade_ms: 50.0,
|
||||
default_preset: "dry",
|
||||
|
||||
default_master_wet_in_gain: 1.0,
|
||||
default_master_wet_out_gain: 1.0,
|
||||
default_master_dry_gain: 1.0,
|
||||
default_master_sync_delay_ms: 400, // spirio 400
|
||||
|
||||
},
|
||||
|
||||
midi_play_record: {
|
||||
max_midi_msg_count: 32768,
|
||||
midi_timer_period_micro_sec: 15000,
|
||||
all_off_delay_ms: 2500, // delay after stop time to turn off all notes
|
||||
log_in_flag: false,
|
||||
log_out_flag: false,
|
||||
half_pedal_flag: false,
|
||||
min_damper_down_time_ms: 0,
|
||||
|
||||
midi_device_list: [
|
||||
{
|
||||
// SAMPLER
|
||||
enableFl: true,
|
||||
|
||||
label: "sampler",
|
||||
//midi_out_device: "Fastlane",
|
||||
//midi_out_port: "Fastlane MIDI B",
|
||||
|
||||
//midi_out_device: "MIDIFACE 2x2",
|
||||
//midi_out_port: "MIDIFACE 2x2 Midi Out 1",
|
||||
|
||||
midi_out_device: "Scarlett 18i20 USB",
|
||||
midi_out_port: "Scarlett 18i20 USB MIDI 1",
|
||||
|
||||
//midi_out_device: "PipeWire-RT-Event",
|
||||
//midi_out_port: "input",
|
||||
|
||||
force_damper_down_fl: false,
|
||||
force_damper_down_threshold: 35,
|
||||
force_damper_down_velocity: 80,
|
||||
|
||||
scale_chord_notes_enable_fl: false,
|
||||
scale_chord_notes_factor: 0.05,
|
||||
|
||||
},
|
||||
{
|
||||
//SPIRIO
|
||||
|
||||
enableFl: true,
|
||||
label: "piano",
|
||||
//midi_out_device: "Fastlane",
|
||||
//midi_out_port: "Fastlane MIDI A",
|
||||
|
||||
//midi_out_device: "MIDIFACE 2x2",
|
||||
//midi_out_port: "MIDIFACE 2x2 Midi Out 2",
|
||||
|
||||
midi_out_device: "iRig MIDI 2",
|
||||
midi_out_port: "iRig MIDI 2 MIDI 1",
|
||||
|
||||
//midi_out_device: "PC-300",
|
||||
//midi_out_port: "PC-300 MIDI 1",
|
||||
|
||||
//midi_out_device: "PipeWire-RT-Event",
|
||||
//midi_out_port: "input",
|
||||
|
||||
// pedal down velocity input/output mapping
|
||||
/*
|
||||
pedal: {
|
||||
up_id: 0,
|
||||
up_vel: 0,
|
||||
down_id: 127,
|
||||
down_vel: 0,
|
||||
half_down_id: 64,
|
||||
half_down_vel: 43,
|
||||
half_up_id: 63,
|
||||
half_up_vel: 43
|
||||
|
||||
},
|
||||
*/
|
||||
|
||||
force_damper_down_fl: false,
|
||||
force_damper_down_threshold: 35,
|
||||
force_damper_down_velocity: 80,
|
||||
|
||||
scale_chord_notes_enable_fl: false,
|
||||
scale_chord_notes_factor: 0.5,
|
||||
},
|
||||
|
||||
],
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
io: {
|
||||
callbackMutexTimeOutMs: 100,
|
||||
}
|
||||
|
||||
ui: {
|
||||
enableFl: true,
|
||||
physRootDir: "~/src/cwtest/src/libcw/html/preset_sel",
|
||||
dfltPageFn: "index.html",
|
||||
port: 5687,
|
||||
rcvBufByteN: 2048,
|
||||
xmtBufByteN: 2048,
|
||||
fmtBufByteN: 4096,
|
||||
websockTimeOutMs: 25, // max time out while blocking for a websock event
|
||||
queueBlkCnt: 8,
|
||||
queueBlkByteCnt: 32768,
|
||||
idleMsgPeriodMs: 50, // period without messages before an idle message is generated
|
||||
uiCfgFn: "ui.cfg", // default UI resource description
|
||||
asyncFl: false
|
||||
},
|
||||
|
||||
serial: {
|
||||
enableFl: false,
|
||||
pollPeriodMs: 50,
|
||||
recvBufByteN: 512,
|
||||
|
||||
array: [
|
||||
{
|
||||
enableFl: false,
|
||||
asyncFl: false,
|
||||
label: "port1", // User label
|
||||
device: "/dev/ttyUSB0", // Serial device name
|
||||
baud: 115200,
|
||||
bits: 8,
|
||||
stop: 1,
|
||||
parity: "no",
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
midi: {
|
||||
enableFl: true,
|
||||
asyncFl: true,
|
||||
parseBufByteCnt: 1024,
|
||||
appNameStr: "cwtest",
|
||||
fileDevName: "file_dev",
|
||||
fileDevReadAheadMicros: 3000,
|
||||
testFileLabel: "file_0",
|
||||
testFileEnableFl: false
|
||||
|
||||
file_ports: [
|
||||
|
||||
{ "label":"file_0",
|
||||
//"file": "/home/kevin/src/cwtest/src/cwtest/cfg/gutim_full/data1/beck1/record_4/midi.mid",
|
||||
"enable_fl": false },
|
||||
]
|
||||
|
||||
},
|
||||
|
||||
audio: {
|
||||
enableFl: true,
|
||||
|
||||
meterMs: 50, // audio meter filter length and meter callback period
|
||||
threadTimeOutMs: 50, // audio thread cond var time out
|
||||
|
||||
groupL: [
|
||||
{
|
||||
enableFl: true, // (req)
|
||||
asyncFl: true,
|
||||
label: "main", // (req) User label
|
||||
id: 0, // (req) User id (can also be set at runtime)
|
||||
srate: 48000, // (req) Sample rate used by all devices in this group
|
||||
dspFrameCnt: 64 // (req) Size of DSP processing buffers
|
||||
}
|
||||
],
|
||||
|
||||
deviceL: [
|
||||
{
|
||||
// System device name
|
||||
|
||||
device: "Scarlett 18i20 USB USB Audio",
|
||||
//device: "USB Audio CODEC USB Audio",
|
||||
//device: "HDA Intel PCH CS4208 Analog",
|
||||
|
||||
activeFl: true, // (req)
|
||||
meterFl: true, // (opt)
|
||||
label: "main", // (req) User label
|
||||
userId: 0, // (opt) User id (can also be set at runtime)
|
||||
framesPerCycle: 512, // (req) Samples per audio device cycle
|
||||
cycleCnt: 3, // (req) Count of device cycle buffers.
|
||||
inGroup: "main", // (opt) All devices in a group must be 'ready' to source
|
||||
outGroup: "main", // (opt) or sink data before an audio callback is made for that group
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
socket: {
|
||||
enableFl: false,
|
||||
asyncFl: false,
|
||||
maxSocketCnt: 10,
|
||||
recvBufByteCnt: 4096,
|
||||
threadTimeOutMs: 50,
|
||||
socketL: [],
|
||||
}
|
||||
|
||||
flow: {
|
||||
framesPerCycle: 64, // time-domain audio cycles frame per cycle (must match audio 'dspFrameCnt')
|
||||
multiPriPresetProbFl: false, // Use probability to select primary multi-preset
|
||||
multiSecPresetProbFl: false, // Use probability to select secondary multi-preset
|
||||
multiPresetInterpFl: false, // Interpolate between two selected multi-presets
|
||||
maxCycleCount: 0, // 0 disables maxCycleCount
|
||||
printNetworkFl: false, // print the network instance
|
||||
printClassDictFl: false, // print the class description dictionary
|
||||
|
||||
|
||||
network: {
|
||||
aud_in: { class: audio_in, args:{ default:{dev_label:"main"} } },
|
||||
|
||||
// select the first six channels: ivory, mic, vsl
|
||||
split_in: { class: audio_split, in:{ in:aud_in.out } args:{ default:{select[1,1,1,1,1,1 ]}} }
|
||||
|
||||
// delay the incoming audio signal to sync it with the piano
|
||||
sync_delay { class: audio_delay, in: { in:split_in.out }, args:{ default:{ delayMs:400 } }}
|
||||
|
||||
// select the first two channels to feed into the transform
|
||||
sync_split: { class: audio_split, in:{ in:sync_delay.out } args:{ default:{select[1,1]}} }
|
||||
|
||||
mstr_wet_in_gain: { class: audio_gain, in:{ in:sync_split.out } }
|
||||
|
||||
// wet signal processing chain
|
||||
wet_in_gain: { class: audio_gain, in:{ in:mstr_wet_in_gain.out } },
|
||||
|
||||
pva: { class: pv_analysis, in:{ in:wet_in_gain.out }, args:{ default:{ wndSmpN:512, hopSmpN:128, hzFl:false } } },
|
||||
sd: { class: spec_dist, in:{ in:pva.out }, preset:kc, args:{ bypass:false } },
|
||||
pvs: { class: pv_synthesis, in:{ in:sd.out } },
|
||||
cmp: { class: compressor, in:{ in:pvs.out }, preset:kc, args:{ bypass:false } },
|
||||
|
||||
wet_out_gain: { class: audio_gain, in:{ in:cmp.out } },
|
||||
|
||||
//wet_out_gain: { class: audio_gain, in:{ in:pvs.out } },
|
||||
|
||||
mute_wet: { class: audio_gain, in:{ in:wet_out_gain.out } },
|
||||
|
||||
// apply the wet/dry gain balance
|
||||
wd_bal: { class: balance, args{}},
|
||||
wet_bal_gain: { class: audio_gain, in:{ in:mute_wet.out, gain:wd_bal.out } },
|
||||
dry_bal_gain: { class: audio_gain, in:{ in:sync_split.out, gain:wd_bal.inv_out } },
|
||||
|
||||
mstr_wet_out_gain: { class: audio_gain, in:{ in:wet_bal_gain.out } }
|
||||
mstr_dry_out_gain: { class: audio_gain, in:{ in:dry_bal_gain.out } },
|
||||
|
||||
|
||||
// merge the wet/dry signals into a single 4 channel signal
|
||||
merge: { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:mstr_dry_out_gain.out, in2:mstr_wet_out_gain.out, in3:mstr_dry_out_gain.out } },
|
||||
|
||||
aout: { class: audio_out, in:{ in:merge.out }, args:{ default:{dev_label:"main"} } },
|
||||
|
||||
//af_merge { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:sync_delay.out } },
|
||||
|
||||
//af_out: { class: audioFileOut, in:{ in:af_merge.out }, args:{ default:{fname:"/home/kevin/temp/temp.wav"}}},
|
||||
|
||||
}
|
||||
|
||||
presets: {
|
||||
|
||||
dry: { pva:dry, sd:dry, cmp:dry, mute_wet:{ gain:0.0 } },
|
||||
a: { pva:a, sd:a, cmp:a, mute_wet:{ gain:1.0 } },
|
||||
b: { pva:b, sd:b, cmp:b, mute_wet:{ gain:1.0 } },
|
||||
c: { pva:c, sd:c, cmp:c, mute_wet:{ gain:1.0 } },
|
||||
d: { pva:d, sd:d, cmp:d, mute_wet:{ gain:1.0 } },
|
||||
f1: { pva:f_1, sd:f_1, cmp:f_1, mute_wet:{ gain:1.0 } },
|
||||
f2: { pva:f_2, sd:f_2, cmp:f_2, mute_wet:{ gain:1.0 } },
|
||||
f3: { pva:f_3, sd:f_3, cmp:f_3, mute_wet:{ gain:1.0 } },
|
||||
f4: { pva:f_4, sd:f_4, cmp:f_4, mute_wet:{ gain:1.0 } },
|
||||
g: { pva:g, sd:g, cmp:g, mute_wet:{ gain:1.0 } },
|
||||
ga: { pva:g_a sd:g_a, cmp:g_a, mute_wet:{ gain:1.0 } },
|
||||
g1a: { pva:g_1_a sd:g_1_a, cmp:g_1_a, mute_wet:{ gain:1.0 } },
|
||||
g1d: { pva:g_1_d sd:g_1_d, cmp:g_1_d, mute_wet:{ gain:1.0 } }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -19,9 +19,9 @@
|
||||
|
||||
{
|
||||
dir:"~/src/cwtest/src/cwtest/cfg/gutim_full/data/score_scriabin",
|
||||
fname:"temp_with_scriabin_0.csv",
|
||||
fname:"temp_with_scriabin_2.csv",
|
||||
vel_table: [
|
||||
{ "device":"piano", "name":"spirio" }, // VSL uses Ivory vel table
|
||||
{ "device":"piano", "name":"spirio_1" }, // VSL uses Ivory vel table
|
||||
{ "device":"sampler", "name":"ivory" }
|
||||
]
|
||||
},
|
||||
@ -31,7 +31,7 @@
|
||||
|
||||
|
||||
record_dir: "~/src/cwtest/src/cwtest/cfg/gutim_full/preset_select",
|
||||
record_fn: "m1_458_trans_5_scriabin",
|
||||
record_fn: "m1_458_trans_5_scriabin_4",
|
||||
record_fn_ext: "txt",
|
||||
|
||||
flow_proc_dict_fn: "~/src/cwtest/src/cwtest/cfg/gutim_full/flow_proc_dict.cfg",
|
||||
@ -106,7 +106,7 @@
|
||||
|
||||
default_master_wet_in_gain: 1.0,
|
||||
default_master_wet_out_gain: 1.0,
|
||||
default_master_dry_gain: 1.0,
|
||||
default_master_dry_gain: 2.0,
|
||||
default_master_sync_delay_ms: 400, // spirio 400
|
||||
|
||||
},
|
File diff suppressed because one or more lines are too long
@ -8,9 +8,15 @@ def parse_score( score_fn ):
|
||||
|
||||
for r in rdr:
|
||||
d = dict(r)
|
||||
d['src'] = "gutim"
|
||||
d['loc'] = int(d['loc']) if d['loc'] else None
|
||||
d['oloc'] = int(d['oloc']) if d['oloc'] else None
|
||||
d['src'] = "gutim"
|
||||
d['loc'] = int(d['loc']) if d['loc'] else None
|
||||
d['oloc'] = int(d['oloc']) if d['oloc'] else None
|
||||
d['status'] = int(d['status']) if d['status'] else None
|
||||
d['d0'] = int(d['d0']) if d['d0'] else None
|
||||
d['d1'] = int(d['d1']) if d['d1'] else None
|
||||
d['sec'] = float(d['sec'])
|
||||
d['opcode'] = d['opcode'].strip()
|
||||
|
||||
scoreL.append(d)
|
||||
|
||||
|
||||
@ -20,23 +26,24 @@ def parse_score( score_fn ):
|
||||
def invert_velocity( d1 ):
|
||||
|
||||
tbl = [ 1,1,2,2,3,5,8,10,13,16,20,24,28,33,38,43,49,55,62,68,72,85,94,103,112]
|
||||
tbl = [ 1, 5,10,16,21,26,32,37,42,48,53,58,64,69,74,80,85,90,96,101,106,112,117,122,127 ]
|
||||
|
||||
if d1 == 0:
|
||||
return 0
|
||||
|
||||
d1 = max(1,int(d1/6))
|
||||
d1 = max(1,int(d1))
|
||||
|
||||
for i,v in enumerate(tbl):
|
||||
|
||||
if d1 <= v:
|
||||
return i
|
||||
if d1 < v:
|
||||
return max(0,i-1)
|
||||
|
||||
return len(tbl)-1
|
||||
|
||||
|
||||
|
||||
def parse_scriabin( ifn ):
|
||||
|
||||
ped_off = { 'dtick':0, 'sec':0, 'type':'ped', 'd0':64, 'd1':0, 'sci_pitch':None }
|
||||
ped_off = { 'dtick':0, 'sec':0, 'type':'ped', 'd0':64, 'd1':0, 'sci_pitch':None, 'UID':None }
|
||||
|
||||
noteL = []
|
||||
|
||||
@ -56,7 +63,8 @@ def parse_scriabin( ifn ):
|
||||
'type': type_label,
|
||||
'd0': int(r['D0']),
|
||||
'd1': invert_velocity(int(r['D1'])) if type_label=='non' else int(r['D1']) ,
|
||||
'sci_pitch': r['sci_pitch'].strip() if 'sci_pitch' in r else None
|
||||
'sci_pitch': r['sci_pitch'].strip() if 'sci_pitch' in r else None,
|
||||
'UID': int(r['UID'])
|
||||
}
|
||||
|
||||
noteL.append(x)
|
||||
@ -64,7 +72,7 @@ def parse_scriabin( ifn ):
|
||||
return noteL
|
||||
|
||||
|
||||
def insert_scriabin( scoreL, noteL, src_label, insert_loc, insert_after_fl ):
|
||||
def insert_scriabin( scoreL, noteL, src_label, insert_loc, insert_after_fl, delta_sec ):
|
||||
|
||||
status_map = { 'non':144, 'nof':144, 'ped':176, 'ctl':176 }
|
||||
type_map = { 'non':'non', 'nof':'nof', 'ped':'ctl', 'ctl':'ctl' }
|
||||
@ -97,7 +105,7 @@ def insert_scriabin( scoreL, noteL, src_label, insert_loc, insert_after_fl ):
|
||||
for n in noteL:
|
||||
d = { f:None for f in fieldL }
|
||||
dur_sec = max(dur_sec,n['sec'])
|
||||
d['sec'] = offs_sec + n['sec']
|
||||
d['sec'] = offs_sec + delta_sec + n['sec']
|
||||
d['opcode'] = type_map[ n['type'].strip() ]
|
||||
d['status'] = status_map[n['type'].strip()]
|
||||
d['d0'] = n['d0']
|
||||
@ -123,6 +131,188 @@ def insert_scriabin( scoreL, noteL, src_label, insert_loc, insert_after_fl ):
|
||||
|
||||
return outL
|
||||
|
||||
|
||||
def interleave_scriabin( scoreL, noteL, src_label, beg_score_loc, cut_score_loc, end_scriabin_uid, end_offs_sec ):
|
||||
# beg_score_loc: the 'loc' where the inserted scriabin begins
|
||||
# cut_score_loc: the 'loc' where the inserted scriabin ends
|
||||
# end_scriabin_uid: the 'uid' which syncronizes to the 'cut_score_loc'.
|
||||
#
|
||||
# BSL CSL
|
||||
# --------------+ +------------------------------
|
||||
# | | |
|
||||
# --------------+ +------------------------------
|
||||
# | |
|
||||
# +-------------------------+
|
||||
# | | |
|
||||
# +-------------------------+
|
||||
# ESU
|
||||
#
|
||||
# end_offs_sec is additional offset added to the time of CSL where sync to ESU occurs
|
||||
|
||||
def scribian_esu_secs( noteL, end_scriabin_uid ):
|
||||
if end_scriabin_uid is None:
|
||||
return noteL[-1]['sec']
|
||||
|
||||
for d in noteL:
|
||||
if d['UID'] == end_scriabin_uid:
|
||||
return d['sec']
|
||||
assert(0)
|
||||
|
||||
def score_bsl_secs( scoreL, beg_score_loc ):
|
||||
for d in scoreL:
|
||||
if d['loc'] == beg_score_loc:
|
||||
return d['sec']
|
||||
assert(0)
|
||||
|
||||
def cut_score_loc_index( scoreL, cut_score_loc ):
|
||||
for i,d in enumerate(scoreL):
|
||||
if d['loc'] == cut_score_loc:
|
||||
return i
|
||||
assert(0)
|
||||
|
||||
def assign_event_id( scoreL ):
|
||||
# Set a matching 'eid' for each note-on/off
|
||||
# and each pedal-dn/up event.
|
||||
|
||||
|
||||
def _is_note_on(d):
|
||||
return d['status'] == 144 and d['d1'] is not None and d['d1']>0
|
||||
|
||||
def _is_note_off(d):
|
||||
return d['status'] == 144 and d['d1'] is not None and d['d1']==0
|
||||
|
||||
def _is_pedal_dn(d):
|
||||
return d['opcode'] == 'ped' and d['d1'] >= 64
|
||||
|
||||
def _is_pedal_up(d):
|
||||
return d['opcode'] == 'ped' and d['d1'] < 64
|
||||
|
||||
def _set_end_evt_eid(scoreL,i,d,evt_id,func):
|
||||
for n in scoreL[i:]:
|
||||
if func(n) and n['d0'] == d['d0']:
|
||||
n['eid'] = evt_id
|
||||
return
|
||||
|
||||
assert(0)
|
||||
|
||||
|
||||
|
||||
evt_id = 0
|
||||
for i,d in enumerate(scoreL):
|
||||
if _is_note_on(d):
|
||||
_set_end_evt_eid(scoreL,i,d,evt_id,_is_note_off)
|
||||
|
||||
elif _is_pedal_dn(d):
|
||||
_set_end_evt_eid(scoreL,i,d,evt_id,_is_pedal_up)
|
||||
|
||||
|
||||
if 'eid' not in d:
|
||||
d['eid'] = evt_id;
|
||||
evt_id += 1
|
||||
|
||||
|
||||
def offset_scriabin( noteL, offset_sec ):
|
||||
for d in noteL:
|
||||
d['sec'] += offset_sec
|
||||
|
||||
def offset_score_after_cut( scoreL, cut_score_loc, secs ):
|
||||
|
||||
|
||||
# Score index of the first score note to play
|
||||
# at the end of the scriabin sequence
|
||||
csl_index = cut_score_loc_index( scoreL, cut_score_loc )
|
||||
|
||||
csl_eid = scoreL[csl_index]['eid']
|
||||
|
||||
|
||||
# offset all events that start on or after csl_index
|
||||
# (this will not shift note-off's/pedal-ups that
|
||||
# are associated with note-on/pedal-dn's which occur
|
||||
# before 'csl_index'.
|
||||
|
||||
sec0 = None
|
||||
for d in scoreL[csl_index:]:
|
||||
|
||||
if sec0 is not None:
|
||||
dsec = d['sec'] - sec0
|
||||
secs += dsec
|
||||
|
||||
sec0 = d['sec']
|
||||
|
||||
if d['eid'] >= csl_eid:
|
||||
d['sec'] = secs
|
||||
|
||||
|
||||
def scriabin_to_score( scoreL, noteL, src_label ):
|
||||
|
||||
status_map = { 'non':144, 'nof':144, 'ped':176, 'ctl':176 }
|
||||
type_map = { 'non':'non', 'nof':'nof', 'ped':'ctl', 'ctl':'ctl' }
|
||||
|
||||
for n in noteL:
|
||||
d = {}
|
||||
d['meas'] = None
|
||||
d['loc'] = None
|
||||
d['oloc'] = None
|
||||
d['sec'] = float(n['sec'])
|
||||
d['opcode'] = type_map[ n['type'].strip() ]
|
||||
d['status'] = status_map[n['type'].strip()]
|
||||
d['d0'] = n['d0']
|
||||
d['d1'] = n['d1']
|
||||
d['tick'] = n['dtick']
|
||||
d['sci_pitch'] = n['sci_pitch']
|
||||
d['src'] = src_label
|
||||
scoreL.append(d)
|
||||
|
||||
return sorted(scoreL,key=lambda x:x['sec'])
|
||||
|
||||
|
||||
def score_to_csv_debug(scoreL):
|
||||
|
||||
fieldnames = list(scoreL[0].keys())
|
||||
with open("foo.csv","w") as f:
|
||||
wtr = csv.DictWriter(f,fieldnames)
|
||||
wtr.writeheader()
|
||||
for r in scoreL:
|
||||
wtr.writerow(r)
|
||||
|
||||
|
||||
def remove_eid_field(scoreL):
|
||||
for i,d in enumerate(scoreL):
|
||||
if 'eid' in d:
|
||||
del d['eid']
|
||||
scoreL[i] = d
|
||||
|
||||
|
||||
|
||||
# Offset in seconds to be applied to the scriabin to
|
||||
# sync it's start with 'beg_score_loc'
|
||||
bsl_secs = score_bsl_secs( scoreL, beg_score_loc )
|
||||
|
||||
|
||||
# Assign matching note-on/off events the same evt-id
|
||||
assign_event_id(scoreL)
|
||||
|
||||
score_to_csv_debug(scoreL)
|
||||
|
||||
# Shift scriabin to start at the beg_score_loc
|
||||
offset_scriabin(noteL,bsl_secs)
|
||||
|
||||
# Start location in seconds of the second part of the score.
|
||||
esu_secs = scribian_esu_secs( noteL, end_scriabin_uid ) + end_offs_sec
|
||||
|
||||
# Shift the second part of score to begin at 'esu_secs'
|
||||
# (while not shifting the end events (note-off/ped-up)
|
||||
# for events which started before the cut)
|
||||
|
||||
offset_score_after_cut( scoreL, cut_score_loc, esu_secs )
|
||||
|
||||
scoreL = scriabin_to_score( scoreL, noteL, src_label )
|
||||
|
||||
remove_eid_field( scoreL )
|
||||
|
||||
return scoreL
|
||||
|
||||
|
||||
def write_meta_cfg( o_cfg_fn, name, beg_loc, end_loc ):
|
||||
|
||||
cfg = { "player_name": name,
|
||||
@ -225,12 +415,14 @@ def gen_reference( scoreL, out_dir, out_fn ):
|
||||
|
||||
with open(out_fn,"w") as f:
|
||||
|
||||
meas0 = None
|
||||
f.write("source meas oloc op secs\n")
|
||||
f.write("------ ---- ----- ---- ----------\n")
|
||||
|
||||
r0 = None
|
||||
for r in scoreL:
|
||||
|
||||
|
||||
|
||||
if r['opcode']=='ped' or r['oloc']:
|
||||
|
||||
src = r['src']
|
||||
@ -238,44 +430,40 @@ def gen_reference( scoreL, out_dir, out_fn ):
|
||||
oloc = r['oloc'] if r['oloc'] else ""
|
||||
label= r['sci_pitch'] if r['opcode']=='non' else _pedal_label(r)
|
||||
secs = r['sec']
|
||||
|
||||
if meas:
|
||||
meas0 = meas
|
||||
|
||||
s = f"{src:7} {meas:4} {oloc:5} {label:5} {secs}\n"
|
||||
f.write(s)
|
||||
|
||||
if r0 and (r0['src'] == 'gutim' and r['src'] != 'gutim'):
|
||||
print(r['src'],f"m{r0['meas']}",f"loc-begin:{r['oloc']}",end=" ")
|
||||
print(r['src'],'m:',meas0,r['oloc'],end=" ")
|
||||
|
||||
if r0 and (r0['src'] != 'gutim' and r['src'] == 'gutim'):
|
||||
print(f"end:{r0['oloc']}")
|
||||
print(r0['oloc'])
|
||||
|
||||
r0 = r
|
||||
|
||||
def insert_pedal( scoreL, locL ):
|
||||
def insert_pedal( scoreL, beg_oloc, end_oloc ):
|
||||
|
||||
def _ped_msg( secs, d1 ):
|
||||
return { "opcode":"ctl","loc":None,"oloc":None,"sec":secs,"status":176,"d0":64,"d1":d1,"src":"ped" }
|
||||
|
||||
for dn_loc,up_loc in locL:
|
||||
|
||||
assert( dn_loc < up_loc )
|
||||
state = 'dn'
|
||||
for d in scoreL:
|
||||
if state=='dn' and d['oloc'] == beg_oloc:
|
||||
outL.append( _ped_msg( d['sec'], 64 ) )
|
||||
state = 'up'
|
||||
|
||||
|
||||
if state =='up' and d['oloc'] == end_oloc:
|
||||
outL.append( _ped_msg( d['sec'], 0 ))
|
||||
stae = None
|
||||
break
|
||||
|
||||
outL = []
|
||||
|
||||
for i,r in enumerate(scoreL):
|
||||
|
||||
if r['oloc'] == dn_loc:
|
||||
outL.append(_ped_msg(r["secs"],64))
|
||||
|
||||
if r['oloc'] == up_loc:
|
||||
outL.append(_ped_msg(r["secs"],0))
|
||||
return sorted(scoreL, key=lambda x:x['sec'])
|
||||
|
||||
|
||||
outL.append(r)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -283,12 +471,12 @@ if __name__ == "__main__":
|
||||
base_dir = "/home/kevin/src/cwtest/src/cwtest/cfg/gutim_full"
|
||||
score_fn = "data/score/20231028/temp.csv"
|
||||
|
||||
ref_fn = "ref.txt"
|
||||
out_fn = "temp_with_scriabin_0.csv"
|
||||
ref_fn = "ref_2.txt"
|
||||
out_fn = "temp_with_scriabin_2.csv"
|
||||
out_dir= "data/score_scriabin/20240428"
|
||||
|
||||
in_preset_fn = "preset_select/m1_458_trans_5.txt"
|
||||
out_preset_fn = "preset_select/m1_458_trans_5_scriabin.txt"
|
||||
out_preset_fn = "preset_select/m1_458_trans_5_scriabin_4.txt"
|
||||
|
||||
score_fn = os.path.join(base_dir, score_fn)
|
||||
out_dir = os.path.join(base_dir, out_dir)
|
||||
@ -360,6 +548,140 @@ if __name__ == "__main__":
|
||||
|
||||
]
|
||||
|
||||
fileL = [
|
||||
|
||||
# *
|
||||
{ "src":"74_1", "ifn":"scriabin_prelude_op74_1.csv", "insert_loc": 1229, "after_fl":False, "ofn":"scriabin_op74_1", "beg_loc":417, "end_loc":418, "delta_sec":0.0 },
|
||||
|
||||
# *
|
||||
{ "src":"74_2", "ifn":"scriabin_prelude_op74_2.csv", "insert_loc": 1867, "after_fl":False, "ofn":"scriabin_op74_2", "beg_loc":638, "end_loc":639, "delta_sec":0.0 },
|
||||
|
||||
# *
|
||||
{ "src":"74_4", "ifn":"scriabin_prelude_op74_4.csv", "insert_loc": 2909, "after_fl":True, "ofn":"scriabin_op74_4", "beg_loc":1010, "end_loc":1011, "delta_sec":0.0 },
|
||||
|
||||
# *
|
||||
{ "src":"74_3", "ifn":"scriabin_prelude_op74_3.csv", "insert_loc": 4084, "after_fl":False, "ofn":"scriabin_op74_3", "beg_loc":1383, "end_loc":1384, "delta_sec":0.0 },
|
||||
|
||||
|
||||
|
||||
#
|
||||
#{ "src":"65_1", "ifn":"scriabin_etude_op65_1_allegro fantastico.csv", "insert_loc": 6323, "after_fl":True, "ofn":"scriabin_65_1", "beg_loc":2763, "end_loc":2764, "delta_sec":0.0 },
|
||||
{ "src":"65_1", "ifn":"scriabin_etude_op65_1_allegro fantastico.csv", "insert_loc": 6376, "after_fl":False, "ofn":"scriabin_65_1", "beg_loc":2804, "end_loc":2805, "delta_sec":0.0 },
|
||||
|
||||
# *
|
||||
{ "src":"8_3", "ifn":"scriabin_etude_op8_3_b_minor.csv", "insert_loc": 8450, "after_fl":False, "ofn":"scriabin_8_3", "beg_loc":3832, "end_loc":3883, "delta_sec":0.0 },
|
||||
|
||||
# *
|
||||
{ "src":"74_5", "ifn":"scriabin_prelude_op74_5.csv", "insert_loc": 9567, "after_fl":False, "ofn":"scriabin_op74_5", "beg_loc":4470, "end_loc":4471, "delta_sec":0.0 },
|
||||
|
||||
# *
|
||||
{ "src":"65_2", "ifn":"scriabin_etude_op65_2_allegretto.csv", "insert_loc": 10789, "after_fl":False, "ofn":"scriabin_65_2", "beg_loc":5440, "end_loc":5441, "delta_sec":0.0 },
|
||||
|
||||
# *
|
||||
{ "src":"42_7", "ifn":"scriabin_etude_op42_7_f_minor.csv", "insert_loc":12428, "after_fl":False, "ofn":"scriabin_42_7", "beg_loc":6043, "end_loc":6044, "delta_sec":0.0 },
|
||||
|
||||
#{ "src":"65_3", "ifn":"scriabin_etude_op65_3_molta_vivace.csv", "insert_loc": 13848, "after_fl":True, "ofn":"scriabin_65_3", "beg_loc":6740, "end_loc":6741, "delta_sec":0.0 },
|
||||
{ "src":"65_3", "ifn":"scriabin_etude_op65_3_molta_vivace.csv", "insert_loc": 13953, "after_fl":True, "ofn":"scriabin_65_3", "beg_loc":6780, "end_loc":6781, "delta_sec":0.0 },
|
||||
|
||||
|
||||
]
|
||||
|
||||
# beg_score_loc: score location which syncs w/ scriabin start
|
||||
# cut_score_loc: location where score starts again
|
||||
# end_scriabin_uid: uid of scriabin which syncs to 'cut_score_loc'.
|
||||
fileL = [
|
||||
|
||||
# *
|
||||
{ "src":"74_1", "ifn":"scriabin_prelude_op74_1.csv", "beg_score_loc":1229, "cut_score_loc":1231, "end_scriabin_uid":743, "end_offs_sec":0, "ofn":"scriabin_op74_1" },
|
||||
|
||||
# *
|
||||
{ "src":"74_2", "ifn":"scriabin_prelude_op74_2.csv", "beg_score_loc": 1867, "cut_score_loc":1877, "end_scriabin_uid":631, "end_offs_sec":1.0, "ofn":"scriabin_op74_2" },
|
||||
|
||||
|
||||
# *
|
||||
#{ "src":"74_4", "ifn":"scriabin_prelude_op74_4.csv", "insert_loc": 2909, "after_fl":True, "ofn":"scriabin_op74_4", "beg_loc":1010, "end_loc":1011, "delta_sec":0.0 },
|
||||
#{ "src":"74_4", "ifn":"scriabin_prelude_op74_4.csv", "beg_score_loc":2924, "cut_score_loc":2927, "end_scriabin_uid":917, "end_offs_sec":0, "ofn":"scriabin_op74_4" },
|
||||
{ "src":"74_4", "ifn":"scriabin_prelude_op74_4.csv", "beg_score_loc":2998, "cut_score_loc":3003, "end_scriabin_uid":917, "end_offs_sec":0, "ofn":"scriabin_op74_4" },
|
||||
|
||||
|
||||
# *
|
||||
#{ "src":"74_3", "ifn":"scriabin_prelude_op74_3.csv", "insert_loc": 4084, "after_fl":False, "ofn":"scriabin_op74_3", "beg_loc":1383, "end_loc":1384, "delta_sec":0.0 },
|
||||
#{ "src":"74_3", "ifn":"scriabin_prelude_op74_3.csv", "beg_score_loc":4062, "cut_score_loc":4070, "end_scriabin_uid":804, "end_offs_sec":0, "ofn":"scriabin_op74_3" },
|
||||
{ "src":"74_3", "ifn":"scriabin_prelude_op74_3.csv", "beg_score_loc": 4086, "cut_score_loc":4087, "end_scriabin_uid":804, "end_offs_sec":2.0, "ofn":"scriabin_op74_3" },
|
||||
|
||||
|
||||
|
||||
#
|
||||
#{ "src":"65_1", "ifn":"scriabin_etude_op65_1_allegro fantastico.csv", "insert_loc": 6323, "after_fl":True, "ofn":"scriabin_65_1", "beg_loc":2763, "end_loc":2764, "delta_sec":0.0 },
|
||||
{ "src":"65_1", "ifn":"scriabin_etude_op65_1_allegro fantastico.csv", "insert_loc": 6376, "after_fl":False, "ofn":"scriabin_65_1", "beg_loc":2804, "end_loc":2805, "delta_sec":0.0 },
|
||||
|
||||
# *
|
||||
#{ "src":"8_3", "ifn":"scriabin_etude_op8_3_b_minor.csv", "insert_loc": 8450, "after_fl":False, "ofn":"scriabin_8_3", "beg_loc":3832, "end_loc":3883, "delta_sec":0.0 },
|
||||
{ "src":"8_3", "ifn":"scriabin_etude_op8_3_b_minor.csv", "insert_loc": 8446, "after_fl":False, "ofn":"scriabin_8_3", "beg_loc":3832, "end_loc":3883, "delta_sec":0.0 },
|
||||
|
||||
# *
|
||||
#{ "src":"74_5", "ifn":"scriabin_prelude_op74_5.csv", "insert_loc": 9567, "after_fl":False, "ofn":"scriabin_op74_5", "beg_loc":4470, "end_loc":4471, "delta_sec":0.0 },
|
||||
{ "src":"74_5", "ifn":"scriabin_prelude_op74_5.csv", "beg_score_loc": 9566, "cut_score_loc":9574, "end_scriabin_uid":1168, "end_offs_sec":0.0, "ofn":"scriabin_op74_5" },
|
||||
|
||||
# *
|
||||
#{ "src":"65_2", "ifn":"scriabin_etude_op65_2_allegretto.csv", "insert_loc": 10789, "after_fl":False, "ofn":"scriabin_65_2", "beg_loc":5440, "end_loc":5441, "delta_sec":0.0 },
|
||||
{ "src":"65_2", "ifn":"scriabin_etude_op65_2_allegretto.csv", "beg_score_loc": 10790, "cut_score_loc":10789, "end_scriabin_uid":479, "end_offs_sec":2.0, "ofn":"scriabin_op65_2" },
|
||||
|
||||
# *
|
||||
{ "src":"42_7", "ifn":"scriabin_etude_op42_7_f_minor.csv", "insert_loc":12428, "after_fl":False, "ofn":"scriabin_42_7", "beg_loc":6043, "end_loc":6044, "delta_sec":0.0 },
|
||||
|
||||
{ "src":"65_3", "ifn":"scriabin_etude_op65_3_molta_vivace.csv", "insert_loc": 13953, "after_fl":True, "ofn":"scriabin_65_3", "beg_loc":6780, "end_loc":6781, "delta_sec":0.0 },
|
||||
|
||||
]
|
||||
|
||||
# 2024-05-24
|
||||
fileL = [
|
||||
|
||||
# *
|
||||
{ "src":"74_1", "ifn":"scriabin_prelude_op74_1.csv", "beg_score_loc":1229, "cut_score_loc":1231, "end_scriabin_uid":743, "end_offs_sec":0, "ofn":"scriabin_op74_1" },
|
||||
|
||||
# *
|
||||
{ "src":"74_2", "ifn":"scriabin_prelude_op74_2.csv", "beg_score_loc": 1867, "cut_score_loc":1877, "end_scriabin_uid":631, "end_offs_sec":1.0, "ofn":"scriabin_op74_2" },
|
||||
|
||||
|
||||
# *
|
||||
{ "src":"74_4", "ifn":"scriabin_prelude_op74_4.csv", "beg_score_loc":2998, "cut_score_loc":3003, "end_scriabin_uid":917, "end_offs_sec":0, "ofn":"scriabin_op74_4" },
|
||||
|
||||
|
||||
# *
|
||||
{ "src":"74_3", "ifn":"scriabin_prelude_op74_3.csv", "beg_score_loc": 4086, "cut_score_loc":4087, "end_scriabin_uid":804, "end_offs_sec":2.0, "ofn":"scriabin_op74_3" },
|
||||
#{ "src":"67_2", "ifn":"scriabin_prelude_op67_2.csv", "insert_loc":4086, "after_fl":False, "ofn":"scriabin_67_2", "beg_loc":6043, "end_loc":6044, "delta_sec":0.0 },
|
||||
|
||||
|
||||
|
||||
#
|
||||
{ "src":"65_1", "ifn":"scriabin_etude_op65_1_allegro fantastico.csv", "insert_loc": 6376, "after_fl":False, "ofn":"scriabin_65_1", "beg_loc":2804, "end_loc":2805, "delta_sec":0.0 },
|
||||
|
||||
# *
|
||||
#{ "src":"8_3", "ifn":"scriabin_etude_op8_3_b_minor.csv", "insert_loc": 8446, "after_fl":False, "ofn":"scriabin_8_3", "beg_loc":3832, "end_loc":3883, "delta_sec":0.0 },
|
||||
{ "src":"67_2", "ifn":"scriabin_prelude_op67_2.csv", "insert_loc":8446, "after_fl":False, "ofn":"scriabin_67_2", "beg_loc":3832, "end_loc":3883, "delta_sec":0.0 },
|
||||
|
||||
# *
|
||||
{ "src":"74_5", "ifn":"scriabin_prelude_op74_5.csv", "beg_score_loc": 9566, "cut_score_loc":9574, "end_scriabin_uid":1168, "end_offs_sec":0.0, "ofn":"scriabin_op74_5" },
|
||||
|
||||
# *
|
||||
{ "src":"65_2", "ifn":"scriabin_etude_op65_2_allegretto.csv", "beg_score_loc": 10790, "cut_score_loc":10789, "end_scriabin_uid":479, "end_offs_sec":2.0, "ofn":"scriabin_op65_2" },
|
||||
|
||||
# *
|
||||
#{ "src":"67_2", "ifn":"scriabin_prelude_op67_2.csv", "insert_loc":12428, "after_fl":False, "ofn":"scriabin_67_2", "beg_loc":6043, "end_loc":6044, "delta_sec":0.0 },
|
||||
#{ "src":"74_3", "ifn":"scriabin_prelude_op74_3.csv", "insert_loc":12428, "after_fl":False, "ofn":"scriabin_op74_3", "beg_loc":6043, "end_loc":6044, "delta_sec":0.0 },
|
||||
#{ "src":"49_1", "ifn":"scriabin_prelude_op49_1.csv", "insert_loc":12428, "after_fl":False, "ofn":"scriabin_op49_1", "beg_loc":6043, "end_loc":6044, "delta_sec":0.0 },
|
||||
{ "src":"8_3", "ifn":"scriabin_etude_op8_3_b_minor.csv", "insert_loc": 12428, "after_fl":False, "ofn":"scriabin_8_3", "beg_loc":6043, "end_loc":6044, "delta_sec":0.0 },
|
||||
|
||||
{ "src":"65_3", "ifn":"scriabin_etude_op65_3_molta_vivace.csv", "insert_loc": 13953, "after_fl":True, "ofn":"scriabin_65_3", "beg_loc":6780, "end_loc":6781, "delta_sec":0.0 },
|
||||
|
||||
|
||||
|
||||
{ "src":"64_0", "ifn":"scriabin_sonate_7_op64.csv", "insert_loc": 16339, "after_fl":True, "ofn":"scriabin_64_0", "beg_loc":7826, "end_loc":7827, "delta_sec":0.0 },
|
||||
|
||||
]
|
||||
|
||||
|
||||
scoreL = parse_score(score_fn)
|
||||
|
||||
fieldnamesL = list(scoreL[0].keys())
|
||||
@ -370,20 +692,24 @@ if __name__ == "__main__":
|
||||
|
||||
noteL = parse_scriabin(f['ifn'])
|
||||
|
||||
scoreL = insert_scriabin(scoreL, noteL, f['src'], f['insert_loc'], f['after_fl'] )
|
||||
|
||||
|
||||
assign_loc(scoreL)
|
||||
|
||||
olocMapD = assign_oloc(scoreL)
|
||||
|
||||
max_oloc = max( r['oloc'] for r in scoreL if r['oloc'] )
|
||||
|
||||
print(f"max oloc:{max_oloc}")
|
||||
|
||||
write_output( out_dir, out_fn, scoreL, 0, max_oloc, fieldnamesL )
|
||||
if 'beg_score_loc' in f:
|
||||
scoreL = interleave_scriabin( scoreL, noteL, f['src'], f['beg_score_loc'],f['cut_score_loc'], f['end_scriabin_uid'], f['end_offs_sec'] )
|
||||
else:
|
||||
scoreL = insert_scriabin( scoreL, noteL, f['src'], f['insert_loc'], f['after_fl'], f['delta_sec'] )
|
||||
|
||||
|
||||
remap_preset_locs( in_preset_fn, out_preset_fn, olocMapD )
|
||||
if 1:
|
||||
assign_loc(scoreL)
|
||||
|
||||
gen_reference( scoreL, out_dir, ref_fn )
|
||||
olocMapD = assign_oloc(scoreL)
|
||||
|
||||
max_oloc = max( r['oloc'] for r in scoreL if r['oloc'] )
|
||||
|
||||
print(f"max oloc:{max_oloc}")
|
||||
|
||||
write_output( out_dir, out_fn, scoreL, 0, max_oloc, fieldnamesL )
|
||||
|
||||
|
||||
remap_preset_locs( in_preset_fn, out_preset_fn, olocMapD )
|
||||
|
||||
gen_reference( scoreL, out_dir, ref_fn )
|
||||
|
@ -1 +0,0 @@
|
||||
UID,trk,dtick,atick,amicro,type,ch,D0,D1,sci_pitch
|
|
@ -1 +0,0 @@
|
||||
UID,trk,dtick,atick,amicro,type,ch,D0,D1,sci_pitch
|
|
889
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op48_3.csv
Normal file
889
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op48_3.csv
Normal file
@ -0,0 +1,889 @@
|
||||
UID,trk,dtick,atick,amicro,type,ch,D0,D1,sci_pitch
|
||||
0, 0, 0, 0, 0,tsig,1,2,,
|
||||
1, 0, 0, 0, 0,ksig,,,,
|
||||
2, 0, 0, 0, 0,tempo,140,bpm,,
|
||||
80, 1, 0, 0, 0,name,,,,
|
||||
81, 1, 0, 0, 0, pgm, 0, 1, 0,
|
||||
82, 1, 0, 0, 0, ctl, 0, 64, 0,
|
||||
83, 1, 0, 0, 0, ctl, 0, 64, 0,
|
||||
886, 2, 1, 1, 418,copy,,,,
|
||||
887, 2, 0, 1, 418,eot,,,,
|
||||
3, 0, 1024, 1024, 428032,tsig,3,2,,
|
||||
4, 0, 0, 1024, 428032,tempo,80,bpm,,
|
||||
84, 1, 1024, 1024, 428032, ctl, 0, 64, 0,
|
||||
85, 1, 0, 1024, 428032, ctl, 0, 64, 0,
|
||||
86, 1, 0, 1024, 428032, non, 0, 63, 41, D#4
|
||||
87, 1, 0, 1024, 428032, non, 0, 60, 40, C4
|
||||
88, 1, 215, 1239, 585412, ctl, 0, 64,127,
|
||||
89, 1, 126, 1365, 677644, nof, 0, 63, 0,
|
||||
90, 1, 0, 1365, 677644, non, 0, 62, 36, D4
|
||||
91, 1, 171, 1536, 802816, non, 0, 54, 40, F#3
|
||||
92, 1, 29, 1565, 824044, ctl, 0, 64, 0,
|
||||
93, 1, 142, 1707, 927988, non, 0, 70, 51, A#4
|
||||
94, 1, 57, 1764, 969712, ctl, 0, 64,127,
|
||||
5, 0, 1024, 2048, 1177600,tempo,100,bpm,,
|
||||
95, 1, 284, 2048, 1177600, non, 0, 44, 37, G#2
|
||||
6, 0, 341, 2389, 1377085,tempo,130,bpm,,
|
||||
96, 1, 341, 2389, 1377085, nof, 0, 70, 0,
|
||||
97, 1, 0, 2389, 1377085, non, 0, 66, 51, F#4
|
||||
98, 1, 171, 2560, 1454035, nof, 0, 44, 0,
|
||||
99, 1, 0, 2560, 1454035, non, 0, 44, 33, G#2
|
||||
100, 1, 171, 2731, 1530985, nof, 0, 66, 0,
|
||||
101, 1, 0, 2731, 1530985, non, 0, 65, 48, F4
|
||||
7, 0, 683, 3072, 1684435,tempo,110,bpm,,
|
||||
102, 1, 341, 3072, 1684435, nof, 0, 65, 0,
|
||||
103, 1, 0, 3072, 1684435, non, 0, 58, 44, A#3
|
||||
104, 1, 0, 3072, 1684435, nof, 0, 44, 0,
|
||||
105, 1, 0, 3072, 1684435, non, 0, 32, 30, G#1
|
||||
106, 1, 35, 3107, 1703055, ctl, 0, 64, 0,
|
||||
8, 0, 341, 3413, 1865847,tempo,100,bpm,,
|
||||
107, 1, 306, 3413, 1865847, nof, 0, 62, 0,
|
||||
108, 1, 0, 3413, 1865847, nof, 0, 58, 0,
|
||||
109, 1, 0, 3413, 1865847, non, 0, 63, 48, D#4
|
||||
110, 1, 31, 3444, 1883982, ctl, 0, 64,127,
|
||||
111, 1, 140, 3584, 1965882, nof, 0, 32, 0,
|
||||
112, 1, 0, 3584, 1965882, nof, 0, 54, 0,
|
||||
113, 1, 0, 3584, 1965882, nof, 0, 60, 0,
|
||||
9, 0, 512, 3925, 2165367,tempo,130,bpm,,
|
||||
114, 1, 341, 3925, 2165367, non, 0, 70, 44, A#4
|
||||
10, 0, 171, 4096, 2242317,tempo,110,bpm,,
|
||||
115, 1, 171, 4096, 2242317, ctl, 0, 64,127,
|
||||
116, 1, 0, 4096, 2242317, ctl, 0, 64, 0,
|
||||
117, 1, 0, 4096, 2242317, nof, 0, 70, 0,
|
||||
118, 1, 0, 4096, 2242317, non, 0, 69, 44, A4
|
||||
119, 1, 0, 4096, 2242317, non, 0, 60, 36, C4
|
||||
120, 1, 105, 4201, 2298177, ctl, 0, 64, 0,
|
||||
121, 1, 147, 4348, 2376381, ctl, 0, 64,127,
|
||||
11, 0, 341, 4437, 2423729,tempo,140,bpm,,
|
||||
122, 1, 89, 4437, 2423729, nof, 0, 63, 0,
|
||||
123, 1, 0, 4437, 2423729, nof, 0, 69, 0,
|
||||
124, 1, 0, 4437, 2423729, non, 0, 60, 40, C4
|
||||
125, 1, 171, 4608, 2495207, non, 0, 65, 43, F4
|
||||
126, 1, 0, 4608, 2495207, nof, 0, 60, 0,
|
||||
127, 1, 0, 4608, 2495207, non, 0, 54, 34, F#3
|
||||
128, 1, 171, 4779, 2566685, nof, 0, 65, 0,
|
||||
129, 1, 0, 4779, 2566685, non, 0, 69, 46, A4
|
||||
130, 1, 170, 4949, 2637745, nof, 0, 69, 0,
|
||||
131, 1, 0, 4949, 2637745, non, 0, 69, 48, A4
|
||||
132, 1, 171, 5120, 2709223, nof, 0, 69, 0,
|
||||
133, 1, 0, 5120, 2709223, non, 0, 77, 51, F5
|
||||
134, 1, 0, 5120, 2709223, nof, 0, 54, 0,
|
||||
135, 1, 0, 5120, 2709223, nof, 0, 60, 0,
|
||||
136, 1, 0, 5120, 2709223, non, 0, 44, 31, G#2
|
||||
137, 1, 171, 5291, 2780701, nof, 0, 77, 0,
|
||||
138, 1, 0, 5291, 2780701, non, 0, 69, 48, A4
|
||||
139, 1, 170, 5461, 2851761, nof, 0, 69, 0,
|
||||
140, 1, 0, 5461, 2851761, non, 0, 69, 46, A4
|
||||
141, 1, 171, 5632, 2923239, nof, 0, 69, 0,
|
||||
142, 1, 0, 5632, 2923239, non, 0, 65, 43, F4
|
||||
143, 1, 0, 5632, 2923239, nof, 0, 44, 0,
|
||||
144, 1, 0, 5632, 2923239, non, 0, 44, 29, G#2
|
||||
145, 1, 171, 5803, 2994717, nof, 0, 65, 0,
|
||||
146, 1, 0, 5803, 2994717, non, 0, 60, 40, C4
|
||||
12, 0, 1707, 6144, 3137255,tempo,100,bpm,,
|
||||
147, 1, 341, 6144, 3137255, nof, 0, 60, 0,
|
||||
148, 1, 0, 6144, 3137255, nof, 0, 44, 0,
|
||||
149, 1, 0, 6144, 3137255, non, 0, 32, 27, G#1
|
||||
150, 1, 119, 6263, 3206870, ctl, 0, 64, 0,
|
||||
151, 1, 393, 6656, 3436775, nof, 0, 32, 0,
|
||||
13, 0, 1024, 7168, 3736295,tempo,120,bpm,,
|
||||
152, 1, 512, 7168, 3736295, ctl, 0, 64, 0,
|
||||
153, 1, 0, 7168, 3736295, ctl, 0, 64, 0,
|
||||
154, 1, 0, 7168, 3736295, ctl, 0, 64, 0,
|
||||
155, 1, 0, 7168, 3736295, non, 0, 69, 41, A4
|
||||
156, 1, 0, 7168, 3736295, non, 0, 64, 26, E4
|
||||
157, 1, 0, 7168, 3736295, non, 0, 61, 22, C#4
|
||||
158, 1, 215, 7383, 3841215, ctl, 0, 64,127,
|
||||
14, 0, 341, 7509, 3902703,tempo,140,bpm,,
|
||||
159, 1, 126, 7509, 3902703, nof, 0, 69, 0,
|
||||
160, 1, 0, 7509, 3902703, non, 0, 68, 46, G#4
|
||||
161, 1, 171, 7680, 3974181, non, 0, 54, 20, F#3
|
||||
162, 1, 29, 7709, 3986303, ctl, 0, 64, 0,
|
||||
15, 0, 342, 7851, 4045659,tempo,120,bpm,,
|
||||
163, 1, 142, 7851, 4045659, nof, 0, 68, 0,
|
||||
164, 1, 0, 7851, 4045659, non, 0, 76, 50, E5
|
||||
165, 1, 57, 7908, 4073475, ctl, 0, 64,127,
|
||||
166, 1, 284, 8192, 4212067, nof, 0, 61, 0,
|
||||
167, 1, 0, 8192, 4212067, non, 0, 48, 18, C3
|
||||
16, 0, 682, 8533, 4378475,tempo,130,bpm,,
|
||||
168, 1, 341, 8533, 4378475, nof, 0, 76, 0,
|
||||
169, 1, 0, 8533, 4378475, non, 0, 72, 41, C5
|
||||
170, 1, 171, 8704, 4455425, non, 0, 38, 16, D2
|
||||
171, 1, 171, 8875, 4532375, nof, 0, 72, 0,
|
||||
172, 1, 0, 8875, 4532375, non, 0, 71, 40, B4
|
||||
173, 1, 341, 9216, 4685825, nof, 0, 64, 0,
|
||||
174, 1, 0, 9216, 4685825, nof, 0, 71, 0,
|
||||
175, 1, 0, 9216, 4685825, non, 0, 64, 38, E4
|
||||
176, 1, 0, 9216, 4685825, nof, 0, 38, 0,
|
||||
177, 1, 0, 9216, 4685825, non, 0, 26, 14, D1
|
||||
178, 1, 35, 9251, 4701575, ctl, 0, 64, 0,
|
||||
179, 1, 337, 9588, 4853225, ctl, 0, 64,127,
|
||||
180, 1, 140, 9728, 4916225, nof, 0, 26, 0,
|
||||
181, 1, 0, 9728, 4916225, nof, 0, 48, 0,
|
||||
182, 1, 0, 9728, 4916225, nof, 0, 54, 0,
|
||||
17, 0, 1707, 10240, 5146625,tempo,120,bpm,,
|
||||
183, 1, 512, 10240, 5146625, ctl, 0, 64,127,
|
||||
184, 1, 0, 10240, 5146625, ctl, 0, 64, 0,
|
||||
185, 1, 0, 10240, 5146625, ctl, 0, 64, 0,
|
||||
186, 1, 0, 10240, 5146625, non, 0, 60, 23, C4
|
||||
187, 1, 105, 10345, 5197865, ctl, 0, 64, 0,
|
||||
188, 1, 147, 10492, 5269601, ctl, 0, 64,127,
|
||||
189, 1, 260, 10752, 5396481, non, 0, 54, 21, F#3
|
||||
18, 0, 1024, 11264, 5646337,tempo,110,bpm,,
|
||||
190, 1, 512, 11264, 5646337, nof, 0, 64, 0,
|
||||
191, 1, 0, 11264, 5646337, non, 0, 65, 34, F4
|
||||
192, 1, 0, 11264, 5646337, non, 0, 44, 19, G#2
|
||||
19, 0, 512, 11776, 5918721,tempo,100,bpm,,
|
||||
193, 1, 512, 11776, 5918721, non, 0, 70, 45, A#4
|
||||
194, 1, 0, 11776, 5918721, nof, 0, 44, 0,
|
||||
195, 1, 0, 11776, 5918721, non, 0, 44, 17, G#2
|
||||
196, 1, 512, 12288, 6218241, nof, 0, 44, 0,
|
||||
197, 1, 0, 12288, 6218241, non, 0, 32, 15, G#1
|
||||
198, 1, 119, 12407, 6287856, ctl, 0, 64, 0,
|
||||
199, 1, 306, 12713, 6466866, ctl, 0, 64,127,
|
||||
20, 0, 1024, 12800, 6517761,tempo,70,bpm,,
|
||||
200, 1, 87, 12800, 6517761, nof, 0, 70, 0,
|
||||
201, 1, 0, 12800, 6517761, non, 0, 69, 26, A4
|
||||
202, 1, 0, 12800, 6517761, nof, 0, 32, 0,
|
||||
203, 1, 0, 12800, 6517761, nof, 0, 54, 0,
|
||||
204, 1, 0, 12800, 6517761, nof, 0, 60, 0,
|
||||
205, 1, 337, 13137, 6799830, ctl, 0, 64, 0,
|
||||
21, 0, 512, 13312, 6946305,tempo,110,bpm,,
|
||||
206, 1, 175, 13312, 6946305, ctl, 0, 64, 0,
|
||||
207, 1, 0, 13312, 6946305, ctl, 0, 64, 0,
|
||||
208, 1, 0, 13312, 6946305, ctl, 0, 64, 0,
|
||||
209, 1, 0, 13312, 6946305, ctl, 0, 64, 0,
|
||||
210, 1, 0, 13312, 6946305, nof, 0, 65, 0,
|
||||
211, 1, 0, 13312, 6946305, nof, 0, 69, 0,
|
||||
212, 1, 0, 13312, 6946305, non, 0, 68, 34, G#4
|
||||
213, 1, 0, 13312, 6946305, non, 0, 65, 33, F4
|
||||
214, 1, 215, 13527, 7060685, ctl, 0, 64,127,
|
||||
215, 1, 126, 13653, 7127717, nof, 0, 68, 0,
|
||||
216, 1, 0, 13653, 7127717, non, 0, 67, 38, G4
|
||||
217, 1, 171, 13824, 7218689, non, 0, 59, 30, B3
|
||||
218, 1, 29, 13853, 7234117, ctl, 0, 64, 0,
|
||||
219, 1, 142, 13995, 7309661, non, 0, 75, 43, D#5
|
||||
220, 1, 57, 14052, 7339985, ctl, 0, 64,127,
|
||||
22, 0, 1024, 14336, 7491073,tempo,100,bpm,,
|
||||
221, 1, 284, 14336, 7491073, nof, 0, 65, 0,
|
||||
222, 1, 0, 14336, 7491073, non, 0, 53, 29, F3
|
||||
23, 0, 341, 14677, 7690558,tempo,130,bpm,,
|
||||
223, 1, 341, 14677, 7690558, nof, 0, 75, 0,
|
||||
224, 1, 0, 14677, 7690558, non, 0, 71, 48, B4
|
||||
225, 1, 171, 14848, 7767508, non, 0, 49, 26, C#3
|
||||
226, 1, 171, 15019, 7844458, nof, 0, 71, 0,
|
||||
227, 1, 0, 15019, 7844458, non, 0, 70, 47, A#4
|
||||
228, 1, 341, 15360, 7997908, nof, 0, 70, 0,
|
||||
229, 1, 0, 15360, 7997908, non, 0, 63, 45, D#4
|
||||
230, 1, 0, 15360, 7997908, nof, 0, 49, 0,
|
||||
231, 1, 0, 15360, 7997908, non, 0, 37, 24, C#2
|
||||
232, 1, 35, 15395, 8013658, ctl, 0, 64, 0,
|
||||
24, 0, 1024, 15701, 8151358,tempo,100,bpm,,
|
||||
233, 1, 306, 15701, 8151358, nof, 0, 67, 0,
|
||||
234, 1, 0, 15701, 8151358, nof, 0, 63, 0,
|
||||
235, 1, 0, 15701, 8151358, non, 0, 68, 51, G#4
|
||||
236, 1, 31, 15732, 8169493, ctl, 0, 64,127,
|
||||
237, 1, 140, 15872, 8251393, nof, 0, 37, 0,
|
||||
238, 1, 0, 15872, 8251393, nof, 0, 53, 0,
|
||||
239, 1, 0, 15872, 8251393, nof, 0, 59, 0,
|
||||
25, 0, 512, 16213, 8450878,tempo,130,bpm,,
|
||||
240, 1, 341, 16213, 8450878, non, 0, 75, 48, D#5
|
||||
241, 1, 171, 16384, 8527828, ctl, 0, 64,127,
|
||||
242, 1, 0, 16384, 8527828, ctl, 0, 64, 0,
|
||||
243, 1, 0, 16384, 8527828, ctl, 0, 64, 0,
|
||||
244, 1, 0, 16384, 8527828, ctl, 0, 64, 0,
|
||||
245, 1, 0, 16384, 8527828, nof, 0, 75, 0,
|
||||
246, 1, 0, 16384, 8527828, non, 0, 74, 51, D5
|
||||
247, 1, 0, 16384, 8527828, non, 0, 65, 36, F4
|
||||
248, 1, 105, 16489, 8575078, ctl, 0, 64, 0,
|
||||
249, 1, 147, 16636, 8641228, ctl, 0, 64,127,
|
||||
26, 0, 512, 16725, 8681278,tempo,140,bpm,,
|
||||
250, 1, 89, 16725, 8681278, nof, 0, 68, 0,
|
||||
251, 1, 0, 16725, 8681278, nof, 0, 74, 0,
|
||||
252, 1, 0, 16725, 8681278, non, 0, 65, 47, F4
|
||||
253, 1, 171, 16896, 8752756, non, 0, 70, 50, A#4
|
||||
254, 1, 0, 16896, 8752756, nof, 0, 65, 0,
|
||||
255, 1, 0, 16896, 8752756, non, 0, 59, 34, B3
|
||||
256, 1, 171, 17067, 8824234, nof, 0, 70, 0,
|
||||
257, 1, 0, 17067, 8824234, non, 0, 74, 53, D5
|
||||
258, 1, 170, 17237, 8895294, nof, 0, 74, 0,
|
||||
259, 1, 0, 17237, 8895294, non, 0, 74, 55, D5
|
||||
260, 1, 171, 17408, 8966772, nof, 0, 74, 0,
|
||||
261, 1, 0, 17408, 8966772, non, 0, 82, 58, A#5
|
||||
262, 1, 0, 17408, 8966772, nof, 0, 59, 0,
|
||||
263, 1, 0, 17408, 8966772, nof, 0, 65, 0,
|
||||
264, 1, 0, 17408, 8966772, non, 0, 53, 31, F3
|
||||
265, 1, 171, 17579, 9038250, nof, 0, 82, 0,
|
||||
266, 1, 0, 17579, 9038250, non, 0, 74, 55, D5
|
||||
267, 1, 170, 17749, 9109310, nof, 0, 74, 0,
|
||||
268, 1, 0, 17749, 9109310, non, 0, 74, 53, D5
|
||||
269, 1, 171, 17920, 9180788, nof, 0, 74, 0,
|
||||
270, 1, 0, 17920, 9180788, non, 0, 70, 50, A#4
|
||||
271, 1, 0, 17920, 9180788, nof, 0, 53, 0,
|
||||
272, 1, 0, 17920, 9180788, non, 0, 47, 29, B2
|
||||
273, 1, 171, 18091, 9252266, nof, 0, 70, 0,
|
||||
274, 1, 0, 18091, 9252266, non, 0, 65, 47, F4
|
||||
27, 0, 1707, 18432, 9394804,tempo,100,bpm,,
|
||||
275, 1, 341, 18432, 9394804, nof, 0, 65, 0,
|
||||
276, 1, 0, 18432, 9394804, nof, 0, 47, 0,
|
||||
277, 1, 0, 18432, 9394804, non, 0, 35, 27, B1
|
||||
278, 1, 119, 18551, 9464419, ctl, 0, 64, 0,
|
||||
279, 1, 193, 18744, 9577324, ctl, 0, 64,127,
|
||||
280, 1, 200, 18944, 9694324, nof, 0, 35, 0,
|
||||
281, 1, 268, 19212, 9851104, ctl, 0, 64, 0,
|
||||
28, 0, 1024, 19456, 9993844,tempo,130,bpm,,
|
||||
282, 1, 244, 19456, 9993844, ctl, 0, 64, 0,
|
||||
283, 1, 0, 19456, 9993844, ctl, 0, 64, 0,
|
||||
284, 1, 0, 19456, 9993844, non, 0, 73, 40, C#5
|
||||
285, 1, 0, 19456, 9993844, non, 0, 64, 22, E4
|
||||
29, 0, 341, 19797, 10147294,tempo,140,bpm,,
|
||||
286, 1, 341, 19797, 10147294, non, 0, 72, 43, C5
|
||||
287, 1, 40, 19837, 10164014, nof, 0, 73, 0,
|
||||
288, 1, 131, 19968, 10218772, non, 0, 56, 17, G#3
|
||||
30, 0, 342, 20139, 10290250,tempo,155,bpm,,
|
||||
289, 1, 171, 20139, 10290250, non, 0, 80, 47, G#5
|
||||
290, 1, 40, 20179, 10305370, nof, 0, 72, 0,
|
||||
291, 1, 301, 20480, 10419148, non, 0, 46, 12, A#2
|
||||
31, 0, 682, 20821, 10548046,tempo,180,bpm,,
|
||||
292, 1, 341, 20821, 10548046, non, 0, 68, 29, G#4
|
||||
293, 1, 40, 20861, 10561046, nof, 0, 80, 0,
|
||||
294, 1, 131, 20992, 10603621, nof, 0, 56, 0,
|
||||
295, 1, 0, 20992, 10603621, nof, 0, 64, 0,
|
||||
296, 1, 0, 20992, 10603621, non, 0, 61, 22, C#4
|
||||
297, 1, 171, 21163, 10659196, non, 0, 73, 37, C#5
|
||||
298, 1, 40, 21203, 10672196, nof, 0, 68, 0,
|
||||
32, 0, 683, 21504, 10770021,tempo,130,bpm,,
|
||||
299, 1, 301, 21504, 10770021, non, 0, 76, 43, E5
|
||||
300, 1, 0, 21504, 10770021, nof, 0, 46, 0,
|
||||
301, 1, 0, 21504, 10770021, non, 0, 55, 17, G3
|
||||
302, 1, 40, 21544, 10788021, nof, 0, 73, 0,
|
||||
303, 1, 301, 21845, 10923471, non, 0, 67, 28, G4
|
||||
304, 1, 171, 22016, 11000421, non, 0, 45, 12, A2
|
||||
33, 0, 683, 22187, 11077371,tempo,155,bpm,,
|
||||
305, 1, 171, 22187, 11077371, non, 0, 75, 33, D#5
|
||||
306, 1, 40, 22227, 11092491, nof, 0, 67, 0,
|
||||
307, 1, 0, 22227, 11092491, nof, 0, 76, 0,
|
||||
308, 1, 301, 22528, 11206269, ctl, 0, 64, 0,
|
||||
309, 1, 0, 22528, 11206269, ctl, 0, 64, 0,
|
||||
310, 1, 0, 22528, 11206269, nof, 0, 45, 0,
|
||||
311, 1, 0, 22528, 11206269, nof, 0, 55, 0,
|
||||
312, 1, 0, 22528, 11206269, nof, 0, 61, 0,
|
||||
313, 1, 0, 22528, 11206269, non, 0, 62, 22, D4
|
||||
314, 1, 40, 22568, 11221389, nof, 0, 75, 0,
|
||||
34, 0, 682, 22869, 11335167,tempo,190,bpm,,
|
||||
315, 1, 301, 22869, 11335167, non, 0, 71, 40, B4
|
||||
316, 1, 171, 23040, 11387835, non, 0, 54, 17, F#3
|
||||
317, 1, 171, 23211, 11440503, non, 0, 70, 42, A#4
|
||||
318, 1, 40, 23251, 11452823, nof, 0, 71, 0,
|
||||
35, 0, 683, 23552, 11545531,tempo,155,bpm,,
|
||||
319, 1, 301, 23552, 11545531, non, 0, 78, 44, F#5
|
||||
320, 1, 0, 23552, 11545531, non, 0, 44, 12, G#2
|
||||
321, 1, 40, 23592, 11560651, nof, 0, 70, 0,
|
||||
36, 0, 341, 23893, 11674429,tempo,190,bpm,,
|
||||
322, 1, 301, 23893, 11674429, non, 0, 66, 32, F#4
|
||||
323, 1, 40, 23933, 11686749, nof, 0, 78, 0,
|
||||
324, 1, 131, 24064, 11727097, nof, 0, 44, 0,
|
||||
325, 1, 0, 24064, 11727097, nof, 0, 54, 0,
|
||||
326, 1, 0, 24064, 11727097, nof, 0, 62, 0,
|
||||
327, 1, 0, 24064, 11727097, non, 0, 59, 22, B3
|
||||
328, 1, 171, 24235, 11779765, non, 0, 71, 32, B4
|
||||
329, 1, 40, 24275, 11792085, nof, 0, 66, 0,
|
||||
330, 1, 301, 24576, 11884793, non, 0, 74, 44, D5
|
||||
331, 1, 0, 24576, 11884793, non, 0, 53, 17, F3
|
||||
332, 1, 40, 24616, 11897113, nof, 0, 71, 0,
|
||||
333, 1, 301, 24917, 11989821, non, 0, 65, 32, F4
|
||||
334, 1, 171, 25088, 12042489, non, 0, 43, 12, G2
|
||||
335, 1, 171, 25259, 12095157, non, 0, 73, 44, C#5
|
||||
336, 1, 40, 25299, 12107477, nof, 0, 65, 0,
|
||||
337, 1, 0, 25299, 12107477, nof, 0, 74, 0,
|
||||
338, 1, 301, 25600, 12200185, ctl, 0, 64, 0,
|
||||
339, 1, 0, 25600, 12200185, ctl, 0, 64, 0,
|
||||
340, 1, 0, 25600, 12200185, nof, 0, 43, 0,
|
||||
341, 1, 0, 25600, 12200185, nof, 0, 53, 0,
|
||||
342, 1, 0, 25600, 12200185, nof, 0, 59, 0,
|
||||
343, 1, 0, 25600, 12200185, non, 0, 57, 22, A3
|
||||
344, 1, 40, 25640, 12212505, nof, 0, 73, 0,
|
||||
345, 1, 301, 25941, 12305213, non, 0, 69, 46, A4
|
||||
346, 1, 171, 26112, 12357881, non, 0, 50, 17, D3
|
||||
347, 1, 171, 26283, 12410549, non, 0, 68, 46, G#4
|
||||
348, 1, 40, 26323, 12422869, nof, 0, 69, 0,
|
||||
349, 1, 301, 26624, 12515577, non, 0, 74, 46, D5
|
||||
350, 1, 0, 26624, 12515577, nof, 0, 57, 0,
|
||||
351, 1, 0, 26624, 12515577, non, 0, 42, 12, F#2
|
||||
352, 1, 40, 26664, 12527897, nof, 0, 68, 0,
|
||||
353, 1, 301, 26965, 12620605, non, 0, 62, 34, D4
|
||||
354, 1, 171, 27136, 12673273, nof, 0, 42, 0,
|
||||
355, 1, 0, 27136, 12673273, nof, 0, 50, 0,
|
||||
356, 1, 0, 27136, 12673273, non, 0, 57, 22, A3
|
||||
357, 1, 171, 27307, 12725941, non, 0, 69, 34, A4
|
||||
358, 1, 40, 27347, 12738261, nof, 0, 62, 0,
|
||||
359, 1, 0, 27347, 12738261, nof, 0, 74, 0,
|
||||
360, 1, 301, 27648, 12830969, non, 0, 73, 46, C#5
|
||||
361, 1, 0, 27648, 12830969, non, 0, 54, 17, F#3
|
||||
362, 1, 40, 27688, 12843289, nof, 0, 69, 0,
|
||||
363, 1, 301, 27989, 12935997, non, 0, 63, 34, D#4
|
||||
364, 1, 171, 28160, 12988665, nof, 0, 57, 0,
|
||||
365, 1, 0, 28160, 12988665, non, 0, 44, 12, G#2
|
||||
366, 1, 171, 28331, 13041333, non, 0, 72, 46, C5
|
||||
367, 1, 40, 28371, 13053653, nof, 0, 63, 0,
|
||||
368, 1, 0, 28371, 13053653, nof, 0, 73, 0,
|
||||
37, 0, 4779, 28672, 13146361,tempo,155,bpm,,
|
||||
369, 1, 301, 28672, 13146361, ctl, 0, 64, 0,
|
||||
370, 1, 0, 28672, 13146361, ctl, 0, 64, 0,
|
||||
371, 1, 0, 28672, 13146361, ctl, 0, 64, 0,
|
||||
372, 1, 0, 28672, 13146361, ctl, 0, 64, 0,
|
||||
373, 1, 0, 28672, 13146361, nof, 0, 44, 0,
|
||||
374, 1, 0, 28672, 13146361, nof, 0, 54, 0,
|
||||
375, 1, 0, 28672, 13146361, non, 0, 75, 55, D#5
|
||||
376, 1, 0, 28672, 13146361, non, 0, 56, 26, G#3
|
||||
377, 1, 40, 28712, 13161481, nof, 0, 72, 0,
|
||||
378, 1, 120, 28832, 13206841, ctl, 0, 64,127,
|
||||
379, 1, 181, 29013, 13275259, non, 0, 65, 41, F4
|
||||
380, 1, 171, 29184, 13339897, non, 0, 53, 21, F3
|
||||
38, 0, 683, 29355, 13404535,tempo,180,bpm,,
|
||||
381, 1, 171, 29355, 13404535, non, 0, 74, 50, D5
|
||||
382, 1, 40, 29395, 13417535, nof, 0, 65, 0,
|
||||
383, 1, 0, 29395, 13417535, nof, 0, 75, 0,
|
||||
384, 1, 301, 29696, 13515360, non, 0, 68, 37, G#4
|
||||
385, 1, 0, 29696, 13515360, nof, 0, 56, 0,
|
||||
386, 1, 0, 29696, 13515360, non, 0, 44, 17, G#2
|
||||
387, 1, 256, 29952, 13598560, ctl, 0, 64, 0,
|
||||
388, 1, 85, 30037, 13626185, non, 0, 73, 47, C#5
|
||||
389, 1, 40, 30077, 13639185, nof, 0, 68, 0,
|
||||
390, 1, 0, 30077, 13639185, nof, 0, 74, 0,
|
||||
391, 1, 131, 30208, 13681760, non, 0, 37, 12, C#2
|
||||
392, 1, 16, 30224, 13686960, ctl, 0, 64,127,
|
||||
393, 1, 155, 30379, 13737335, non, 0, 61, 33, C#4
|
||||
39, 0, 1365, 30720, 13848160,tempo,160,bpm,,
|
||||
394, 1, 341, 30720, 13848160, non, 0, 69, 39, A4
|
||||
395, 1, 0, 30720, 13848160, nof, 0, 37, 0,
|
||||
396, 1, 0, 30720, 13848160, nof, 0, 44, 0,
|
||||
397, 1, 0, 30720, 13848160, nof, 0, 53, 0,
|
||||
398, 1, 40, 30760, 13862800, nof, 0, 61, 0,
|
||||
399, 1, 0, 30760, 13862800, nof, 0, 73, 0,
|
||||
400, 1, 301, 31061, 13972966, non, 0, 65, 26, F4
|
||||
401, 1, 342, 31403, 14098138, non, 0, 68, 30, G#4
|
||||
402, 1, 40, 31443, 14112778, nof, 0, 65, 0,
|
||||
403, 1, 0, 31443, 14112778, nof, 0, 69, 0,
|
||||
404, 1, 61, 31504, 14135104, ctl, 0, 64, 0,
|
||||
40, 0, 1024, 31744, 14222944,tempo,145,bpm,,
|
||||
405, 1, 240, 31744, 14222944, ctl, 0, 64, 0,
|
||||
406, 1, 0, 31744, 14222944, ctl, 0, 64, 0,
|
||||
407, 1, 0, 31744, 14222944, ctl, 0, 64, 0,
|
||||
408, 1, 0, 31744, 14222944, ctl, 0, 64, 0,
|
||||
409, 1, 0, 31744, 14222944, nof, 0, 68, 0,
|
||||
410, 1, 0, 31744, 14222944, non, 0, 68, 37, G#4
|
||||
411, 1, 0, 31744, 14222944, non, 0, 65, 25, F4
|
||||
412, 1, 215, 31959, 14309804, ctl, 0, 64,127,
|
||||
413, 1, 126, 32085, 14360708, nof, 0, 68, 0,
|
||||
414, 1, 0, 32085, 14360708, non, 0, 67, 41, G4
|
||||
415, 1, 171, 32256, 14429792, non, 0, 59, 23, B3
|
||||
416, 1, 29, 32285, 14441508, ctl, 0, 64, 0,
|
||||
417, 1, 142, 32427, 14498876, non, 0, 75, 44, D#5
|
||||
418, 1, 57, 32484, 14521904, ctl, 0, 64,127,
|
||||
41, 0, 1024, 32768, 14636640,tempo,120,bpm,,
|
||||
419, 1, 284, 32768, 14636640, nof, 0, 65, 0,
|
||||
420, 1, 0, 32768, 14636640, non, 0, 49, 21, C#3
|
||||
42, 0, 341, 33109, 14803048,tempo,140,bpm,,
|
||||
421, 1, 341, 33109, 14803048, nof, 0, 75, 0,
|
||||
422, 1, 0, 33109, 14803048, non, 0, 71, 44, B4
|
||||
423, 1, 171, 33280, 14874526, nof, 0, 49, 0,
|
||||
424, 1, 0, 33280, 14874526, non, 0, 49, 20, C#3
|
||||
425, 1, 171, 33451, 14946004, nof, 0, 71, 0,
|
||||
426, 1, 0, 33451, 14946004, non, 0, 70, 41, A#4
|
||||
427, 1, 341, 33792, 15088542, nof, 0, 70, 0,
|
||||
428, 1, 0, 33792, 15088542, non, 0, 63, 44, D#4
|
||||
429, 1, 0, 33792, 15088542, nof, 0, 49, 0,
|
||||
430, 1, 0, 33792, 15088542, non, 0, 37, 18, C#2
|
||||
431, 1, 35, 33827, 15103172, ctl, 0, 64, 0,
|
||||
43, 0, 1024, 34133, 15231080,tempo,100,bpm,,
|
||||
432, 1, 306, 34133, 15231080, nof, 0, 67, 0,
|
||||
433, 1, 0, 34133, 15231080, nof, 0, 63, 0,
|
||||
434, 1, 0, 34133, 15231080, non, 0, 68, 48, G#4
|
||||
435, 1, 31, 34164, 15249215, ctl, 0, 64,127,
|
||||
436, 1, 140, 34304, 15331115, nof, 0, 37, 0,
|
||||
437, 1, 0, 34304, 15331115, nof, 0, 59, 0,
|
||||
44, 0, 512, 34645, 15530600,tempo,130,bpm,,
|
||||
438, 1, 341, 34645, 15530600, non, 0, 75, 44, D#5
|
||||
439, 1, 171, 34816, 15607550, ctl, 0, 64,127,
|
||||
440, 1, 0, 34816, 15607550, ctl, 0, 64, 0,
|
||||
441, 1, 0, 34816, 15607550, ctl, 0, 64, 0,
|
||||
442, 1, 0, 34816, 15607550, ctl, 0, 64, 0,
|
||||
443, 1, 0, 34816, 15607550, nof, 0, 75, 0,
|
||||
444, 1, 0, 34816, 15607550, non, 0, 74, 44, D5
|
||||
445, 1, 0, 34816, 15607550, non, 0, 65, 36, F4
|
||||
446, 1, 105, 34921, 15654800, ctl, 0, 64, 0,
|
||||
447, 1, 147, 35068, 15720950, ctl, 0, 64,127,
|
||||
45, 0, 512, 35157, 15761000,tempo,140,bpm,,
|
||||
448, 1, 89, 35157, 15761000, nof, 0, 68, 0,
|
||||
449, 1, 0, 35157, 15761000, nof, 0, 74, 0,
|
||||
450, 1, 0, 35157, 15761000, non, 0, 65, 40, F4
|
||||
451, 1, 171, 35328, 15832478, non, 0, 70, 43, A#4
|
||||
452, 1, 0, 35328, 15832478, nof, 0, 65, 0,
|
||||
453, 1, 0, 35328, 15832478, non, 0, 59, 34, B3
|
||||
454, 1, 171, 35499, 15903956, nof, 0, 70, 0,
|
||||
455, 1, 0, 35499, 15903956, non, 0, 74, 46, D5
|
||||
456, 1, 170, 35669, 15975016, nof, 0, 74, 0,
|
||||
457, 1, 0, 35669, 15975016, non, 0, 74, 48, D5
|
||||
458, 1, 171, 35840, 16046494, nof, 0, 74, 0,
|
||||
459, 1, 0, 35840, 16046494, non, 0, 82, 51, A#5
|
||||
460, 1, 0, 35840, 16046494, nof, 0, 59, 0,
|
||||
461, 1, 0, 35840, 16046494, nof, 0, 65, 0,
|
||||
462, 1, 0, 35840, 16046494, non, 0, 49, 31, C#3
|
||||
463, 1, 171, 36011, 16117972, nof, 0, 82, 0,
|
||||
464, 1, 0, 36011, 16117972, non, 0, 74, 48, D5
|
||||
465, 1, 170, 36181, 16189032, nof, 0, 74, 0,
|
||||
466, 1, 0, 36181, 16189032, non, 0, 74, 46, D5
|
||||
467, 1, 171, 36352, 16260510, nof, 0, 74, 0,
|
||||
468, 1, 0, 36352, 16260510, non, 0, 70, 43, A#4
|
||||
469, 1, 0, 36352, 16260510, nof, 0, 49, 0,
|
||||
470, 1, 0, 36352, 16260510, non, 0, 49, 29, C#3
|
||||
471, 1, 171, 36523, 16331988, nof, 0, 70, 0,
|
||||
472, 1, 0, 36523, 16331988, non, 0, 65, 40, F4
|
||||
473, 1, 341, 36864, 16474526, nof, 0, 65, 0,
|
||||
474, 1, 0, 36864, 16474526, nof, 0, 49, 0,
|
||||
475, 1, 0, 36864, 16474526, non, 0, 37, 27, C#2
|
||||
476, 1, 119, 36983, 16524268, ctl, 0, 64, 0,
|
||||
477, 1, 393, 37376, 16688542, nof, 0, 37, 0,
|
||||
46, 0, 2731, 37888, 16902558,tempo,145,bpm,,
|
||||
478, 1, 512, 37888, 16902558, ctl, 0, 64, 0,
|
||||
479, 1, 0, 37888, 16902558, ctl, 0, 64, 0,
|
||||
480, 1, 0, 37888, 16902558, ctl, 0, 64, 0,
|
||||
481, 1, 0, 37888, 16902558, ctl, 0, 64, 0,
|
||||
482, 1, 0, 37888, 16902558, ctl, 0, 64, 0,
|
||||
483, 1, 0, 37888, 16902558, ctl, 0, 64, 0,
|
||||
484, 1, 0, 37888, 16902558, non, 0, 66, 38, F#4
|
||||
485, 1, 0, 37888, 16902558, non, 0, 63, 38, D#4
|
||||
486, 1, 215, 38103, 16989418, ctl, 0, 64,127,
|
||||
487, 1, 126, 38229, 17040322, nof, 0, 66, 0,
|
||||
488, 1, 0, 38229, 17040322, non, 0, 65, 42, F4
|
||||
489, 1, 171, 38400, 17109406, non, 0, 57, 34, A3
|
||||
490, 1, 29, 38429, 17121122, ctl, 0, 64, 0,
|
||||
491, 1, 142, 38571, 17178490, non, 0, 73, 45, C#5
|
||||
492, 1, 57, 38628, 17201518, ctl, 0, 64,127,
|
||||
47, 0, 1024, 38912, 17316254,tempo,120,bpm,,
|
||||
493, 1, 284, 38912, 17316254, nof, 0, 63, 0,
|
||||
494, 1, 0, 38912, 17316254, non, 0, 49, 31, C#3
|
||||
48, 0, 341, 39253, 17482662,tempo,140,bpm,,
|
||||
495, 1, 341, 39253, 17482662, nof, 0, 73, 0,
|
||||
496, 1, 0, 39253, 17482662, non, 0, 69, 45, A4
|
||||
497, 1, 171, 39424, 17554140, nof, 0, 49, 0,
|
||||
498, 1, 0, 39424, 17554140, non, 0, 49, 27, C#3
|
||||
499, 1, 171, 39595, 17625618, nof, 0, 69, 0,
|
||||
500, 1, 0, 39595, 17625618, non, 0, 68, 42, G#4
|
||||
501, 1, 341, 39936, 17768156, nof, 0, 68, 0,
|
||||
502, 1, 0, 39936, 17768156, non, 0, 61, 38, C#4
|
||||
503, 1, 0, 39936, 17768156, nof, 0, 49, 0,
|
||||
504, 1, 0, 39936, 17768156, non, 0, 37, 24, C#2
|
||||
505, 1, 35, 39971, 17782786, ctl, 0, 64, 0,
|
||||
49, 0, 1024, 40277, 17910694,tempo,100,bpm,,
|
||||
506, 1, 306, 40277, 17910694, nof, 0, 65, 0,
|
||||
507, 1, 0, 40277, 17910694, nof, 0, 61, 0,
|
||||
508, 1, 0, 40277, 17910694, non, 0, 66, 42, F#4
|
||||
509, 1, 31, 40308, 17928829, ctl, 0, 64,127,
|
||||
510, 1, 140, 40448, 18010729, nof, 0, 37, 0,
|
||||
511, 1, 0, 40448, 18010729, nof, 0, 57, 0,
|
||||
50, 0, 512, 40789, 18210214,tempo,130,bpm,,
|
||||
512, 1, 341, 40789, 18210214, non, 0, 73, 38, C#5
|
||||
513, 1, 171, 40960, 18287164, ctl, 0, 64,127,
|
||||
514, 1, 0, 40960, 18287164, ctl, 0, 64, 0,
|
||||
515, 1, 0, 40960, 18287164, ctl, 0, 64, 0,
|
||||
516, 1, 0, 40960, 18287164, ctl, 0, 64, 0,
|
||||
517, 1, 0, 40960, 18287164, ctl, 0, 64, 0,
|
||||
518, 1, 0, 40960, 18287164, ctl, 0, 64, 0,
|
||||
519, 1, 0, 40960, 18287164, nof, 0, 73, 0,
|
||||
520, 1, 0, 40960, 18287164, non, 0, 72, 38, C5
|
||||
521, 1, 0, 40960, 18287164, non, 0, 63, 30, D#4
|
||||
522, 1, 105, 41065, 18334414, ctl, 0, 64, 0,
|
||||
523, 1, 147, 41212, 18400564, ctl, 0, 64,127,
|
||||
51, 0, 512, 41301, 18440614,tempo,140,bpm,,
|
||||
524, 1, 89, 41301, 18440614, nof, 0, 66, 0,
|
||||
525, 1, 0, 41301, 18440614, nof, 0, 72, 0,
|
||||
526, 1, 0, 41301, 18440614, non, 0, 63, 34, D#4
|
||||
527, 1, 171, 41472, 18512092, non, 0, 68, 37, G#4
|
||||
528, 1, 0, 41472, 18512092, nof, 0, 63, 0,
|
||||
529, 1, 0, 41472, 18512092, non, 0, 57, 28, A3
|
||||
530, 1, 171, 41643, 18583570, nof, 0, 68, 0,
|
||||
531, 1, 0, 41643, 18583570, non, 0, 72, 40, C5
|
||||
532, 1, 170, 41813, 18654630, nof, 0, 72, 0,
|
||||
533, 1, 0, 41813, 18654630, non, 0, 72, 42, C5
|
||||
534, 1, 171, 41984, 18726108, nof, 0, 72, 0,
|
||||
535, 1, 0, 41984, 18726108, non, 0, 80, 45, G#5
|
||||
536, 1, 0, 41984, 18726108, nof, 0, 57, 0,
|
||||
537, 1, 0, 41984, 18726108, nof, 0, 63, 0,
|
||||
538, 1, 0, 41984, 18726108, non, 0, 49, 25, C#3
|
||||
539, 1, 171, 42155, 18797586, nof, 0, 80, 0,
|
||||
540, 1, 0, 42155, 18797586, non, 0, 72, 42, C5
|
||||
541, 1, 170, 42325, 18868646, nof, 0, 72, 0,
|
||||
542, 1, 0, 42325, 18868646, non, 0, 72, 40, C5
|
||||
543, 1, 171, 42496, 18940124, nof, 0, 72, 0,
|
||||
544, 1, 0, 42496, 18940124, non, 0, 68, 37, G#4
|
||||
545, 1, 0, 42496, 18940124, nof, 0, 49, 0,
|
||||
546, 1, 0, 42496, 18940124, non, 0, 49, 23, C#3
|
||||
547, 1, 171, 42667, 19011602, nof, 0, 68, 0,
|
||||
548, 1, 0, 42667, 19011602, non, 0, 63, 34, D#4
|
||||
52, 0, 1707, 43008, 19154140,tempo,100,bpm,,
|
||||
549, 1, 341, 43008, 19154140, nof, 0, 63, 0,
|
||||
550, 1, 0, 43008, 19154140, nof, 0, 49, 0,
|
||||
551, 1, 0, 43008, 19154140, non, 0, 37, 21, C#2
|
||||
552, 1, 119, 43127, 19223755, ctl, 0, 64, 0,
|
||||
553, 1, 393, 43520, 19453660, nof, 0, 37, 0,
|
||||
53, 0, 1024, 44032, 19753180,tempo,80,bpm,,
|
||||
554, 1, 512, 44032, 19753180, ctl, 0, 64, 0,
|
||||
555, 1, 0, 44032, 19753180, ctl, 0, 64, 0,
|
||||
556, 1, 0, 44032, 19753180, ctl, 0, 64, 0,
|
||||
557, 1, 0, 44032, 19753180, ctl, 0, 64, 0,
|
||||
558, 1, 0, 44032, 19753180, ctl, 0, 64, 0,
|
||||
559, 1, 0, 44032, 19753180, ctl, 0, 64, 0,
|
||||
560, 1, 0, 44032, 19753180, non, 0, 63, 36, D#4
|
||||
561, 1, 0, 44032, 19753180, non, 0, 60, 25, C4
|
||||
562, 1, 215, 44247, 19910560, ctl, 0, 64,127,
|
||||
54, 0, 341, 44373, 20002792,tempo,100,bpm,,
|
||||
563, 1, 126, 44373, 20002792, nof, 0, 63, 0,
|
||||
564, 1, 0, 44373, 20002792, non, 0, 62, 36, D4
|
||||
565, 1, 171, 44544, 20102827, non, 0, 54, 23, F#3
|
||||
566, 1, 29, 44573, 20119792, ctl, 0, 64, 0,
|
||||
567, 1, 142, 44715, 20202862, non, 0, 70, 46, A#4
|
||||
568, 1, 57, 44772, 20236207, ctl, 0, 64,127,
|
||||
55, 0, 683, 45056, 20402347,tempo,120,bpm,,
|
||||
569, 1, 284, 45056, 20402347, non, 0, 49, 21, C#3
|
||||
56, 0, 341, 45397, 20568755,tempo,130,bpm,,
|
||||
570, 1, 341, 45397, 20568755, nof, 0, 70, 0,
|
||||
571, 1, 0, 45397, 20568755, non, 0, 66, 51, F#4
|
||||
572, 1, 171, 45568, 20645705, nof, 0, 49, 0,
|
||||
573, 1, 0, 45568, 20645705, non, 0, 49, 19, C#3
|
||||
574, 1, 171, 45739, 20722655, nof, 0, 66, 0,
|
||||
575, 1, 0, 45739, 20722655, non, 0, 65, 48, F4
|
||||
57, 0, 683, 46080, 20876105,tempo,110,bpm,,
|
||||
576, 1, 341, 46080, 20876105, nof, 0, 65, 0,
|
||||
577, 1, 0, 46080, 20876105, non, 0, 58, 44, A#3
|
||||
578, 1, 0, 46080, 20876105, nof, 0, 49, 0,
|
||||
579, 1, 0, 46080, 20876105, non, 0, 37, 17, C#2
|
||||
580, 1, 35, 46115, 20894725, ctl, 0, 64, 0,
|
||||
58, 0, 341, 46421, 21057517,tempo,100,bpm,,
|
||||
581, 1, 306, 46421, 21057517, nof, 0, 62, 0,
|
||||
582, 1, 0, 46421, 21057517, nof, 0, 58, 0,
|
||||
583, 1, 0, 46421, 21057517, non, 0, 63, 48, D#4
|
||||
584, 1, 31, 46452, 21075652, ctl, 0, 64,127,
|
||||
585, 1, 140, 46592, 21157552, nof, 0, 37, 0,
|
||||
586, 1, 0, 46592, 21157552, nof, 0, 54, 0,
|
||||
587, 1, 0, 46592, 21157552, nof, 0, 60, 0,
|
||||
59, 0, 512, 46933, 21357037,tempo,130,bpm,,
|
||||
588, 1, 341, 46933, 21357037, non, 0, 70, 44, A#4
|
||||
589, 1, 171, 47104, 21433987, ctl, 0, 64,127,
|
||||
590, 1, 0, 47104, 21433987, ctl, 0, 64, 0,
|
||||
591, 1, 0, 47104, 21433987, ctl, 0, 64, 0,
|
||||
592, 1, 0, 47104, 21433987, ctl, 0, 64, 0,
|
||||
593, 1, 0, 47104, 21433987, ctl, 0, 64, 0,
|
||||
594, 1, 0, 47104, 21433987, ctl, 0, 64, 0,
|
||||
595, 1, 0, 47104, 21433987, nof, 0, 70, 0,
|
||||
596, 1, 0, 47104, 21433987, non, 0, 69, 44, A4
|
||||
597, 1, 0, 47104, 21433987, non, 0, 60, 28, C4
|
||||
598, 1, 105, 47209, 21481237, ctl, 0, 64, 0,
|
||||
599, 1, 147, 47356, 21547387, ctl, 0, 64,127,
|
||||
60, 0, 512, 47445, 21587437,tempo,140,bpm,,
|
||||
600, 1, 89, 47445, 21587437, nof, 0, 63, 0,
|
||||
601, 1, 0, 47445, 21587437, nof, 0, 69, 0,
|
||||
602, 1, 0, 47445, 21587437, non, 0, 60, 40, C4
|
||||
603, 1, 171, 47616, 21658915, non, 0, 65, 43, F4
|
||||
604, 1, 0, 47616, 21658915, nof, 0, 60, 0,
|
||||
605, 1, 0, 47616, 21658915, non, 0, 54, 26, F#3
|
||||
606, 1, 171, 47787, 21730393, nof, 0, 65, 0,
|
||||
607, 1, 0, 47787, 21730393, non, 0, 69, 46, A4
|
||||
608, 1, 170, 47957, 21801453, nof, 0, 69, 0,
|
||||
609, 1, 0, 47957, 21801453, non, 0, 69, 48, A4
|
||||
610, 1, 171, 48128, 21872931, nof, 0, 69, 0,
|
||||
611, 1, 0, 48128, 21872931, non, 0, 77, 51, F5
|
||||
612, 1, 0, 48128, 21872931, nof, 0, 54, 0,
|
||||
613, 1, 0, 48128, 21872931, nof, 0, 60, 0,
|
||||
614, 1, 0, 48128, 21872931, non, 0, 49, 23, C#3
|
||||
615, 1, 171, 48299, 21944409, nof, 0, 77, 0,
|
||||
616, 1, 0, 48299, 21944409, non, 0, 69, 48, A4
|
||||
617, 1, 170, 48469, 22015469, nof, 0, 69, 0,
|
||||
618, 1, 0, 48469, 22015469, non, 0, 69, 46, A4
|
||||
619, 1, 171, 48640, 22086947, nof, 0, 69, 0,
|
||||
620, 1, 0, 48640, 22086947, non, 0, 65, 43, F4
|
||||
621, 1, 0, 48640, 22086947, nof, 0, 49, 0,
|
||||
622, 1, 0, 48640, 22086947, non, 0, 49, 21, C#3
|
||||
623, 1, 171, 48811, 22158425, nof, 0, 65, 0,
|
||||
624, 1, 0, 48811, 22158425, non, 0, 60, 40, C4
|
||||
625, 1, 341, 49152, 22300963, nof, 0, 60, 0,
|
||||
626, 1, 0, 49152, 22300963, nof, 0, 49, 0,
|
||||
627, 1, 0, 49152, 22300963, non, 0, 37, 19, C#2
|
||||
628, 1, 119, 49271, 22350705, ctl, 0, 64, 0,
|
||||
629, 1, 393, 49664, 22514979, nof, 0, 37, 0,
|
||||
61, 0, 2731, 50176, 22728995,tempo,130,bpm,,
|
||||
630, 1, 512, 50176, 22728995, ctl, 0, 64,127,
|
||||
631, 1, 0, 50176, 22728995, ctl, 0, 64, 0,
|
||||
632, 1, 0, 50176, 22728995, ctl, 0, 64, 0,
|
||||
633, 1, 0, 50176, 22728995, ctl, 0, 64, 0,
|
||||
634, 1, 0, 50176, 22728995, ctl, 0, 64, 0,
|
||||
635, 1, 0, 50176, 22728995, non, 0, 61, 25, C#4
|
||||
636, 1, 105, 50281, 22776245, ctl, 0, 64, 0,
|
||||
637, 1, 147, 50428, 22842395, ctl, 0, 64,127,
|
||||
62, 0, 512, 50688, 22959395,tempo,160,bpm,,
|
||||
638, 1, 260, 50688, 22959395, non, 0, 53, 23, F3
|
||||
63, 0, 512, 51200, 23146787,tempo,155,bpm,,
|
||||
639, 1, 512, 51200, 23146787, non, 0, 65, 31, F4
|
||||
640, 1, 0, 51200, 23146787, non, 0, 69, 43, A4
|
||||
641, 1, 0, 51200, 23146787, nof, 0, 61, 0,
|
||||
642, 1, 0, 51200, 23146787, non, 0, 49, 21, C#3
|
||||
643, 1, 512, 51712, 23340323, nof, 0, 49, 0,
|
||||
644, 1, 0, 51712, 23340323, non, 0, 49, 20, C#3
|
||||
64, 0, 1024, 52224, 23533859,tempo,180,bpm,,
|
||||
645, 1, 512, 52224, 23533859, nof, 0, 69, 0,
|
||||
646, 1, 0, 52224, 23533859, non, 0, 68, 25, G#4
|
||||
647, 1, 0, 52224, 23533859, nof, 0, 49, 0,
|
||||
648, 1, 0, 52224, 23533859, non, 0, 37, 18, C#2
|
||||
649, 1, 119, 52343, 23572534, ctl, 0, 64, 0,
|
||||
650, 1, 169, 52512, 23627459, ctl, 0, 64,127,
|
||||
651, 1, 224, 52736, 23700259, nof, 0, 37, 0,
|
||||
652, 1, 0, 52736, 23700259, nof, 0, 53, 0,
|
||||
653, 1, 288, 53024, 23793859, ctl, 0, 64, 0,
|
||||
654, 1, 224, 53248, 23866659, ctl, 0, 64,127,
|
||||
655, 1, 0, 53248, 23866659, ctl, 0, 64, 0,
|
||||
656, 1, 0, 53248, 23866659, ctl, 0, 64, 0,
|
||||
657, 1, 0, 53248, 23866659, ctl, 0, 64, 0,
|
||||
658, 1, 0, 53248, 23866659, ctl, 0, 64, 0,
|
||||
659, 1, 0, 53248, 23866659, ctl, 0, 64, 0,
|
||||
660, 1, 0, 53248, 23866659, ctl, 0, 64, 0,
|
||||
661, 1, 0, 53248, 23866659, ctl, 0, 64, 0,
|
||||
662, 1, 0, 53248, 23866659, nof, 0, 65, 0,
|
||||
663, 1, 0, 53248, 23866659, nof, 0, 68, 0,
|
||||
664, 1, 0, 53248, 23866659, non, 0, 60, 36, C4
|
||||
665, 1, 105, 53353, 23900784, ctl, 0, 64, 0,
|
||||
666, 1, 147, 53500, 23948559, ctl, 0, 64,127,
|
||||
65, 0, 1365, 53589, 23977484,tempo,140,bpm,,
|
||||
667, 1, 89, 53589, 23977484, non, 0, 60, 40, C4
|
||||
668, 1, 171, 53760, 24048962, non, 0, 65, 43, F4
|
||||
669, 1, 0, 53760, 24048962, nof, 0, 60, 0,
|
||||
670, 1, 0, 53760, 24048962, non, 0, 54, 34, F#3
|
||||
671, 1, 171, 53931, 24120440, nof, 0, 65, 0,
|
||||
672, 1, 0, 53931, 24120440, non, 0, 69, 46, A4
|
||||
673, 1, 170, 54101, 24191500, nof, 0, 69, 0,
|
||||
674, 1, 0, 54101, 24191500, non, 0, 69, 48, A4
|
||||
675, 1, 171, 54272, 24262978, nof, 0, 69, 0,
|
||||
676, 1, 0, 54272, 24262978, non, 0, 77, 51, F5
|
||||
677, 1, 0, 54272, 24262978, nof, 0, 54, 0,
|
||||
678, 1, 0, 54272, 24262978, nof, 0, 60, 0,
|
||||
679, 1, 0, 54272, 24262978, non, 0, 49, 31, C#3
|
||||
680, 1, 171, 54443, 24334456, nof, 0, 77, 0,
|
||||
681, 1, 0, 54443, 24334456, non, 0, 69, 48, A4
|
||||
682, 1, 170, 54613, 24405516, nof, 0, 69, 0,
|
||||
683, 1, 0, 54613, 24405516, non, 0, 69, 46, A4
|
||||
684, 1, 171, 54784, 24476994, nof, 0, 69, 0,
|
||||
685, 1, 0, 54784, 24476994, non, 0, 65, 43, F4
|
||||
686, 1, 0, 54784, 24476994, nof, 0, 49, 0,
|
||||
687, 1, 0, 54784, 24476994, non, 0, 49, 29, C#3
|
||||
688, 1, 171, 54955, 24548472, nof, 0, 65, 0,
|
||||
689, 1, 0, 54955, 24548472, non, 0, 60, 40, C4
|
||||
690, 1, 341, 55296, 24691010, nof, 0, 60, 0,
|
||||
691, 1, 0, 55296, 24691010, nof, 0, 49, 0,
|
||||
692, 1, 0, 55296, 24691010, non, 0, 37, 27, C#2
|
||||
693, 1, 119, 55415, 24740752, ctl, 0, 64, 0,
|
||||
694, 1, 393, 55808, 24905026, nof, 0, 37, 0,
|
||||
66, 0, 2731, 56320, 25119042,tempo,130,bpm,,
|
||||
695, 1, 512, 56320, 25119042, ctl, 0, 64,127,
|
||||
696, 1, 0, 56320, 25119042, ctl, 0, 64, 0,
|
||||
697, 1, 0, 56320, 25119042, ctl, 0, 64, 0,
|
||||
698, 1, 0, 56320, 25119042, ctl, 0, 64, 0,
|
||||
699, 1, 0, 56320, 25119042, ctl, 0, 64, 0,
|
||||
700, 1, 0, 56320, 25119042, ctl, 0, 64, 0,
|
||||
701, 1, 0, 56320, 25119042, non, 0, 61, 11, C#4
|
||||
702, 1, 105, 56425, 25166292, ctl, 0, 64, 0,
|
||||
703, 1, 147, 56572, 25232442, ctl, 0, 64,127,
|
||||
67, 0, 512, 56832, 25349442,tempo,160,bpm,,
|
||||
704, 1, 260, 56832, 25349442, non, 0, 53, 9, F3
|
||||
68, 0, 512, 57344, 25536834,tempo,120,bpm,,
|
||||
705, 1, 512, 57344, 25536834, non, 0, 65, 23, F4
|
||||
706, 1, 0, 57344, 25536834, non, 0, 69, 35, A4
|
||||
707, 1, 0, 57344, 25536834, nof, 0, 61, 0,
|
||||
708, 1, 0, 57344, 25536834, non, 0, 49, 6, C#3
|
||||
709, 1, 512, 57856, 25786690, nof, 0, 49, 0,
|
||||
710, 1, 0, 57856, 25786690, non, 0, 49, 4, C#3
|
||||
69, 0, 1024, 58368, 26036546,tempo,100,bpm,,
|
||||
711, 1, 512, 58368, 26036546, nof, 0, 69, 0,
|
||||
712, 1, 0, 58368, 26036546, non, 0, 68, 17, G#4
|
||||
713, 1, 0, 58368, 26036546, nof, 0, 49, 0,
|
||||
714, 1, 0, 58368, 26036546, non, 0, 37, 2, C#2
|
||||
715, 1, 119, 58487, 26106161, ctl, 0, 64, 0,
|
||||
716, 1, 169, 58656, 26205026, ctl, 0, 64,127,
|
||||
717, 1, 224, 58880, 26336066, nof, 0, 37, 0,
|
||||
718, 1, 0, 58880, 26336066, nof, 0, 53, 0,
|
||||
719, 1, 288, 59168, 26504546, ctl, 0, 64, 0,
|
||||
720, 1, 224, 59392, 26635586, ctl, 0, 64,127,
|
||||
721, 1, 0, 59392, 26635586, ctl, 0, 64, 0,
|
||||
722, 1, 0, 59392, 26635586, ctl, 0, 64, 0,
|
||||
723, 1, 0, 59392, 26635586, ctl, 0, 64, 0,
|
||||
724, 1, 0, 59392, 26635586, ctl, 0, 64, 0,
|
||||
725, 1, 0, 59392, 26635586, ctl, 0, 64, 0,
|
||||
726, 1, 0, 59392, 26635586, ctl, 0, 64, 0,
|
||||
727, 1, 0, 59392, 26635586, ctl, 0, 64, 0,
|
||||
728, 1, 0, 59392, 26635586, ctl, 0, 64, 0,
|
||||
729, 1, 0, 59392, 26635586, ctl, 0, 64, 0,
|
||||
730, 1, 0, 59392, 26635586, nof, 0, 65, 0,
|
||||
731, 1, 0, 59392, 26635586, nof, 0, 68, 0,
|
||||
732, 1, 0, 59392, 26635586, non, 0, 60, 29, C4
|
||||
733, 1, 105, 59497, 26697011, ctl, 0, 64, 0,
|
||||
734, 1, 147, 59644, 26783006, ctl, 0, 64,127,
|
||||
70, 0, 1365, 59733, 26835071,tempo,140,bpm,,
|
||||
735, 1, 89, 59733, 26835071, non, 0, 60, 33, C4
|
||||
736, 1, 171, 59904, 26906549, non, 0, 65, 36, F4
|
||||
737, 1, 0, 59904, 26906549, nof, 0, 60, 0,
|
||||
738, 1, 0, 59904, 26906549, non, 0, 54, 27, F#3
|
||||
739, 1, 171, 60075, 26978027, nof, 0, 65, 0,
|
||||
740, 1, 0, 60075, 26978027, non, 0, 69, 39, A4
|
||||
741, 1, 170, 60245, 27049087, nof, 0, 69, 0,
|
||||
742, 1, 0, 60245, 27049087, non, 0, 69, 41, A4
|
||||
743, 1, 171, 60416, 27120565, nof, 0, 69, 0,
|
||||
744, 1, 0, 60416, 27120565, non, 0, 77, 44, F5
|
||||
745, 1, 0, 60416, 27120565, nof, 0, 54, 0,
|
||||
746, 1, 0, 60416, 27120565, nof, 0, 60, 0,
|
||||
747, 1, 0, 60416, 27120565, non, 0, 49, 24, C#3
|
||||
748, 1, 171, 60587, 27192043, nof, 0, 77, 0,
|
||||
749, 1, 0, 60587, 27192043, non, 0, 69, 41, A4
|
||||
750, 1, 170, 60757, 27263103, nof, 0, 69, 0,
|
||||
751, 1, 0, 60757, 27263103, non, 0, 69, 39, A4
|
||||
752, 1, 171, 60928, 27334581, nof, 0, 69, 0,
|
||||
753, 1, 0, 60928, 27334581, non, 0, 65, 36, F4
|
||||
754, 1, 0, 60928, 27334581, nof, 0, 49, 0,
|
||||
755, 1, 0, 60928, 27334581, non, 0, 49, 22, C#3
|
||||
756, 1, 171, 61099, 27406059, nof, 0, 65, 0,
|
||||
757, 1, 0, 61099, 27406059, non, 0, 60, 33, C4
|
||||
71, 0, 1707, 61440, 27548597,tempo,155,bpm,,
|
||||
758, 1, 341, 61440, 27548597, nof, 0, 60, 0,
|
||||
759, 1, 0, 61440, 27548597, nof, 0, 49, 0,
|
||||
760, 1, 0, 61440, 27548597, non, 0, 37, 20, C#2
|
||||
761, 1, 119, 61559, 27593579, ctl, 0, 64, 0,
|
||||
762, 1, 393, 61952, 27742133, nof, 0, 37, 0,
|
||||
763, 1, 512, 62464, 27935669, ctl, 0, 64,127,
|
||||
764, 1, 0, 62464, 27935669, ctl, 0, 64, 0,
|
||||
765, 1, 0, 62464, 27935669, ctl, 0, 64, 0,
|
||||
766, 1, 0, 62464, 27935669, ctl, 0, 64, 0,
|
||||
767, 1, 0, 62464, 27935669, ctl, 0, 64, 0,
|
||||
768, 1, 0, 62464, 27935669, ctl, 0, 64, 0,
|
||||
769, 1, 0, 62464, 27935669, ctl, 0, 64, 0,
|
||||
770, 1, 0, 62464, 27935669, ctl, 0, 64, 0,
|
||||
771, 1, 0, 62464, 27935669, ctl, 0, 64, 0,
|
||||
772, 1, 0, 62464, 27935669, ctl, 0, 64, 0,
|
||||
773, 1, 0, 62464, 27935669, non, 0, 60, 41, C4
|
||||
774, 1, 105, 62569, 27975359, ctl, 0, 64, 0,
|
||||
775, 1, 147, 62716, 28030925, ctl, 0, 64,127,
|
||||
72, 0, 1365, 62805, 28064567,tempo,140,bpm,,
|
||||
776, 1, 89, 62805, 28064567, non, 0, 60, 45, C4
|
||||
777, 1, 171, 62976, 28136045, non, 0, 65, 48, F4
|
||||
778, 1, 0, 62976, 28136045, nof, 0, 60, 0,
|
||||
779, 1, 0, 62976, 28136045, non, 0, 54, 39, F#3
|
||||
780, 1, 171, 63147, 28207523, nof, 0, 65, 0,
|
||||
781, 1, 0, 63147, 28207523, non, 0, 69, 51, A4
|
||||
782, 1, 170, 63317, 28278583, nof, 0, 69, 0,
|
||||
783, 1, 0, 63317, 28278583, non, 0, 72, 53, C5
|
||||
784, 1, 171, 63488, 28350061, nof, 0, 72, 0,
|
||||
785, 1, 0, 63488, 28350061, non, 0, 81, 56, A5
|
||||
786, 1, 0, 63488, 28350061, nof, 0, 54, 0,
|
||||
787, 1, 0, 63488, 28350061, nof, 0, 60, 0,
|
||||
788, 1, 0, 63488, 28350061, non, 0, 49, 36, C#3
|
||||
789, 1, 171, 63659, 28421539, nof, 0, 81, 0,
|
||||
790, 1, 0, 63659, 28421539, non, 0, 72, 53, C5
|
||||
791, 1, 170, 63829, 28492599, nof, 0, 72, 0,
|
||||
792, 1, 0, 63829, 28492599, non, 0, 69, 51, A4
|
||||
793, 1, 171, 64000, 28564077, nof, 0, 69, 0,
|
||||
794, 1, 0, 64000, 28564077, non, 0, 65, 48, F4
|
||||
795, 1, 0, 64000, 28564077, nof, 0, 49, 0,
|
||||
796, 1, 0, 64000, 28564077, non, 0, 49, 34, C#3
|
||||
797, 1, 171, 64171, 28635555, nof, 0, 65, 0,
|
||||
798, 1, 0, 64171, 28635555, non, 0, 60, 45, C4
|
||||
73, 0, 1707, 64512, 28778093,tempo,180,bpm,,
|
||||
799, 1, 341, 64512, 28778093, nof, 0, 60, 0,
|
||||
800, 1, 0, 64512, 28778093, nof, 0, 49, 0,
|
||||
801, 1, 0, 64512, 28778093, non, 0, 37, 32, C#2
|
||||
802, 1, 119, 64631, 28816768, ctl, 0, 64, 0,
|
||||
803, 1, 393, 65024, 28944493, nof, 0, 37, 0,
|
||||
804, 1, 512, 65536, 29110893, ctl, 0, 64,127,
|
||||
805, 1, 0, 65536, 29110893, ctl, 0, 64, 0,
|
||||
806, 1, 0, 65536, 29110893, ctl, 0, 64, 0,
|
||||
807, 1, 0, 65536, 29110893, ctl, 0, 64, 0,
|
||||
808, 1, 0, 65536, 29110893, ctl, 0, 64, 0,
|
||||
809, 1, 0, 65536, 29110893, ctl, 0, 64, 0,
|
||||
810, 1, 0, 65536, 29110893, ctl, 0, 64, 0,
|
||||
811, 1, 0, 65536, 29110893, ctl, 0, 64, 0,
|
||||
812, 1, 0, 65536, 29110893, ctl, 0, 64, 0,
|
||||
813, 1, 0, 65536, 29110893, ctl, 0, 64, 0,
|
||||
814, 1, 0, 65536, 29110893, non, 0, 60, 44, C4
|
||||
815, 1, 105, 65641, 29145018, ctl, 0, 64, 0,
|
||||
816, 1, 147, 65788, 29192793, ctl, 0, 64,127,
|
||||
74, 0, 1365, 65877, 29221718,tempo,140,bpm,,
|
||||
817, 1, 89, 65877, 29221718, non, 0, 60, 48, C4
|
||||
818, 1, 171, 66048, 29293196, non, 0, 65, 51, F4
|
||||
819, 1, 0, 66048, 29293196, nof, 0, 60, 0,
|
||||
820, 1, 0, 66048, 29293196, non, 0, 54, 42, F#3
|
||||
821, 1, 171, 66219, 29364674, nof, 0, 65, 0,
|
||||
822, 1, 0, 66219, 29364674, non, 0, 69, 54, A4
|
||||
823, 1, 113, 66332, 29411908, nof, 0, 69, 0,
|
||||
824, 1, 0, 66332, 29411908, non, 0, 72, 63, C5
|
||||
825, 1, 114, 66446, 29459560, nof, 0, 72, 0,
|
||||
826, 1, 0, 66446, 29459560, non, 0, 77, 63, F5
|
||||
827, 1, 114, 66560, 29507212, nof, 0, 77, 0,
|
||||
828, 1, 0, 66560, 29507212, non, 0, 84, 68, C6
|
||||
829, 1, 0, 66560, 29507212, nof, 0, 54, 0,
|
||||
830, 1, 0, 66560, 29507212, nof, 0, 60, 0,
|
||||
831, 1, 0, 66560, 29507212, non, 0, 49, 39, C#3
|
||||
832, 1, 171, 66731, 29578690, nof, 0, 84, 0,
|
||||
833, 1, 0, 66731, 29578690, non, 0, 77, 56, F5
|
||||
834, 1, 171, 66902, 29650168, nof, 0, 77, 0,
|
||||
835, 1, 0, 66902, 29650168, non, 0, 72, 54, C5
|
||||
836, 1, 170, 67072, 29721228, nof, 0, 72, 0,
|
||||
837, 1, 0, 67072, 29721228, non, 0, 69, 51, A4
|
||||
838, 1, 0, 67072, 29721228, nof, 0, 49, 0,
|
||||
839, 1, 0, 67072, 29721228, non, 0, 49, 37, C#3
|
||||
840, 1, 171, 67243, 29792706, nof, 0, 69, 0,
|
||||
841, 1, 0, 67243, 29792706, non, 0, 65, 48, F4
|
||||
842, 1, 171, 67414, 29864184, nof, 0, 65, 0,
|
||||
843, 1, 0, 67414, 29864184, non, 0, 60, 41, C4
|
||||
75, 0, 1707, 67584, 29935244,tempo,100,bpm,,
|
||||
844, 1, 170, 67584, 29935244, nof, 0, 60, 0,
|
||||
845, 1, 0, 67584, 29935244, nof, 0, 49, 0,
|
||||
846, 1, 0, 67584, 29935244, non, 0, 37, 35, C#2
|
||||
847, 1, 119, 67703, 30004859, ctl, 0, 64, 0,
|
||||
848, 1, 393, 68096, 30234764, nof, 0, 37, 0,
|
||||
76, 0, 1024, 68608, 30534284,tempo,100,bpm,,
|
||||
849, 1, 512, 68608, 30534284, ctl, 0, 64, 0,
|
||||
850, 1, 0, 68608, 30534284, ctl, 0, 64, 0,
|
||||
851, 1, 0, 68608, 30534284, non, 0, 61, 33, C#4
|
||||
852, 1, 140, 68748, 30616184, ctl, 0, 64,127,
|
||||
853, 1, 116, 68864, 30684044, non, 0, 53, 39, F3
|
||||
854, 1, 85, 68949, 30733769, non, 0, 61, 44, C#4
|
||||
855, 1, 114, 69063, 30800459, non, 0, 65, 47, F4
|
||||
856, 1, 57, 69120, 30833804, non, 0, 49, 44, C#3
|
||||
857, 1, 57, 69177, 30867149, nof, 0, 61, 0,
|
||||
858, 1, 0, 69177, 30867149, nof, 0, 65, 0,
|
||||
859, 1, 0, 69177, 30867149, non, 0, 61, 49, C#4
|
||||
860, 1, 0, 69177, 30867149, non, 0, 65, 49, F4
|
||||
861, 1, 0, 69177, 30867149, non, 0, 68, 49, G#4
|
||||
862, 1, 114, 69291, 30933839, non, 0, 73, 52, C#5
|
||||
863, 1, 85, 69376, 30983564, non, 0, 44, 50, G#2
|
||||
864, 1, 28, 69404, 30999944, non, 0, 77, 55, F5
|
||||
865, 1, 114, 69518, 31066634, non, 0, 80, 57, G#5
|
||||
77, 0, 1024, 69632, 31133324,tempo,50,bpm,,
|
||||
866, 1, 114, 69632, 31133324, non, 0, 89, 67, F6
|
||||
867, 1, 0, 69632, 31133324, non, 0, 37, 55, C#2
|
||||
868, 1, 1024, 70656, 32332428, nof, 0, 61, 0,
|
||||
869, 1, 0, 70656, 32332428, nof, 0, 65, 0,
|
||||
870, 1, 0, 70656, 32332428, nof, 0, 68, 0,
|
||||
871, 1, 0, 70656, 32332428, nof, 0, 73, 0,
|
||||
872, 1, 0, 70656, 32332428, nof, 0, 77, 0,
|
||||
873, 1, 0, 70656, 32332428, nof, 0, 80, 0,
|
||||
874, 1, 0, 70656, 32332428, nof, 0, 89, 0,
|
||||
875, 1, 0, 70656, 32332428, nof, 0, 37, 0,
|
||||
876, 1, 0, 70656, 32332428, nof, 0, 44, 0,
|
||||
877, 1, 0, 70656, 32332428, nof, 0, 49, 0,
|
||||
878, 1, 0, 70656, 32332428, nof, 0, 53, 0,
|
||||
879, 1, 0, 70656, 32332428, nof, 0, 61, 0,
|
||||
880, 1, 385, 71041, 32783263, ctl, 0, 64, 0,
|
||||
78, 0, 2048, 71680, 33531532,tempo,222,bpm,,
|
||||
881, 1, 639, 71680, 33531532, ctl, 0, 64, 0,
|
||||
882, 1, 0, 71680, 33531532, ctl, 0, 64, 0,
|
||||
883, 1, 3072, 74752, 34339468, ctl, 0, 64, 0,
|
||||
884, 1, 0, 74752, 34339468, ctl, 0, 64, 0,
|
||||
79, 0, 3075, 74755, 34340257,eot,,,,
|
||||
885, 1, 3, 74755, 34340257,eot,,,,
|
|
BIN
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op48_3.mid
Normal file
BIN
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op48_3.mid
Normal file
Binary file not shown.
1130
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op67_1.csv
Normal file
1130
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op67_1.csv
Normal file
File diff suppressed because it is too large
Load Diff
BIN
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op67_1.mid
Normal file
BIN
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op67_1.mid
Normal file
Binary file not shown.
1761
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op67_2.csv
Normal file
1761
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op67_2.csv
Normal file
File diff suppressed because it is too large
Load Diff
BIN
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op67_2.mid
Normal file
BIN
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op67_2.mid
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
639
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op74_2_0.csv
Normal file
639
src/cwtest/cfg/gutim_full/scriabin/scriabin_prelude_op74_2_0.csv
Normal file
@ -0,0 +1,639 @@
|
||||
UID,trk,dtick,atick,amicro,type,ch,D0,D1,sci_pitch
|
||||
0, 0, 0, 0, 0,tsig,1,2,,
|
||||
1, 0, 0, 0, 0,ksig,,,,
|
||||
2, 0, 0, 0, 0,tempo,30,bpm,,
|
||||
66, 1, 0, 0, 0,name,,,,
|
||||
67, 1, 0, 0, 0, pgm, 0, 1, 0,
|
||||
68, 1, 0, 0, 0, ctl, 0, 64, 0,
|
||||
69, 1, 0, 0, 0, ctl, 0, 64, 0,
|
||||
636, 2, 1, 1, 1953,copy,,,,
|
||||
637, 2, 0, 1, 1953,eot,,,,
|
||||
70, 1, 768, 768, 1499904, non, 0, 30, 13, F#1
|
||||
3, 0, 960, 960, 1874880,tempo,25,bpm,,
|
||||
71, 1, 192, 960, 1874880, non, 0, 42, 13, F#2
|
||||
4, 0, 64, 1024, 2024832,tsig,4,3,,
|
||||
5, 0, 0, 1024, 2024832,tempo,30,bpm,,
|
||||
72, 1, 64, 1024, 2024832, ctl, 0, 64,127,
|
||||
73, 1, 0, 1024, 2024832, ctl, 0, 64,127,
|
||||
74, 1, 0, 1024, 2024832, non, 0, 69, 38, A4
|
||||
75, 1, 0, 1024, 2024832, non, 0, 49, 13, C#3
|
||||
6, 0, 1024, 2048, 4024704,tempo,25,bpm,,
|
||||
76, 1, 1024, 2048, 4024704, non, 0, 72, 39, C5
|
||||
77, 1, 50, 2098, 4141854, nof, 0, 69, 0,
|
||||
7, 0, 512, 2560, 5224320,tempo,35,bpm,,
|
||||
78, 1, 462, 2560, 5224320, non, 0, 69, 34, A4
|
||||
79, 1, 50, 2610, 5308020, nof, 0, 72, 0,
|
||||
80, 1, 462, 3072, 6081408, ctl, 0, 64,127,
|
||||
81, 1, 0, 3072, 6081408, ctl, 0, 64,127,
|
||||
82, 1, 0, 3072, 6081408, non, 0, 67, 33, G4
|
||||
83, 1, 50, 3122, 6165108, nof, 0, 69, 0,
|
||||
84, 1, 462, 3584, 6938496, non, 0, 66, 30, F#4
|
||||
85, 1, 50, 3634, 7022196, nof, 0, 67, 0,
|
||||
8, 0, 1536, 4096, 7795584,tempo,30,bpm,,
|
||||
86, 1, 462, 4096, 7795584, non, 0, 65, 27, F4
|
||||
87, 1, 50, 4146, 7893234, nof, 0, 66, 0,
|
||||
9, 0, 512, 4608, 8795520,tempo,25,bpm,,
|
||||
88, 1, 462, 4608, 8795520, non, 0, 64, 20, E4
|
||||
89, 1, 50, 4658, 8912670, nof, 0, 65, 0,
|
||||
10, 0, 512, 5120, 9995136,tempo,30,bpm,,
|
||||
90, 1, 462, 5120, 9995136, ctl, 0, 64, 0,
|
||||
91, 1, 0, 5120, 9995136, ctl, 0, 64,127,
|
||||
92, 1, 0, 5120, 9995136, nof, 0, 30, 0,
|
||||
93, 1, 0, 5120, 9995136, nof, 0, 42, 0,
|
||||
94, 1, 0, 5120, 9995136, nof, 0, 49, 0,
|
||||
95, 1, 0, 5120, 9995136, non, 0, 42, 21, F#2
|
||||
96, 1, 0, 5120, 9995136, non, 0, 49, 17, C#3
|
||||
97, 1, 102, 5222, 10194342, ctl, 0, 64, 0,
|
||||
98, 1, 118, 5340, 10424796, ctl, 0, 64,127,
|
||||
11, 0, 512, 5632, 10995072,tempo,35,bpm,,
|
||||
99, 1, 292, 5632, 10995072, nof, 0, 64, 0,
|
||||
100, 1, 0, 5632, 10995072, non, 0, 48, 14, C3
|
||||
101, 1, 0, 5632, 10995072, non, 0, 55, 18, G3
|
||||
102, 1, 40, 5672, 11062032, nof, 0, 49, 0,
|
||||
103, 1, 472, 6144, 11852160, nof, 0, 42, 0,
|
||||
104, 1, 0, 6144, 11852160, non, 0, 49, 17, C#3
|
||||
105, 1, 0, 6144, 11852160, non, 0, 42, 21, F#2
|
||||
106, 1, 40, 6184, 11919120, nof, 0, 48, 0,
|
||||
107, 1, 0, 6184, 11919120, nof, 0, 55, 0,
|
||||
108, 1, 216, 6400, 12280704, non, 0, 60, 25, C4
|
||||
12, 0, 1024, 6656, 12709248,tempo,30,bpm,,
|
||||
109, 1, 256, 6656, 12709248, nof, 0, 60, 0,
|
||||
110, 1, 0, 6656, 12709248, non, 0, 59, 25, B3
|
||||
111, 1, 0, 6656, 12709248, non, 0, 48, 14, C3
|
||||
112, 1, 0, 6656, 12709248, non, 0, 55, 18, G3
|
||||
113, 1, 40, 6696, 12787368, nof, 0, 49, 0,
|
||||
114, 1, 216, 6912, 13209216, nof, 0, 59, 0,
|
||||
115, 1, 0, 6912, 13209216, non, 0, 58, 20, A#3
|
||||
116, 1, 256, 7168, 13709184, ctl, 0, 64, 0,
|
||||
117, 1, 0, 7168, 13709184, ctl, 0, 64,127,
|
||||
118, 1, 0, 7168, 13709184, nof, 0, 42, 0,
|
||||
119, 1, 0, 7168, 13709184, non, 0, 42, 21, F#2
|
||||
120, 1, 0, 7168, 13709184, non, 0, 49, 17, C#3
|
||||
121, 1, 40, 7208, 13787304, nof, 0, 48, 0,
|
||||
122, 1, 0, 7208, 13787304, nof, 0, 55, 0,
|
||||
123, 1, 67, 7275, 13918155, ctl, 0, 64, 0,
|
||||
124, 1, 149, 7424, 14209152, non, 0, 65, 30, F4
|
||||
125, 1, 11, 7435, 14230635, ctl, 0, 64,127,
|
||||
13, 0, 1024, 7680, 14709120,tempo,30,bpm,,
|
||||
126, 1, 245, 7680, 14709120, nof, 0, 65, 0,
|
||||
127, 1, 0, 7680, 14709120, non, 0, 64, 27, E4
|
||||
128, 1, 0, 7680, 14709120, non, 0, 48, 14, C3
|
||||
129, 1, 0, 7680, 14709120, non, 0, 55, 18, G3
|
||||
130, 1, 40, 7720, 14787240, nof, 0, 49, 0,
|
||||
14, 0, 256, 7936, 15209088,tempo,35,bpm,,
|
||||
131, 1, 216, 7936, 15209088, nof, 0, 64, 0,
|
||||
132, 1, 0, 7936, 15209088, non, 0, 63, 25, D#4
|
||||
133, 1, 247, 8183, 15622566, ctl, 0, 64, 0,
|
||||
15, 0, 256, 8192, 15637632,tempo,30,bpm,,
|
||||
134, 1, 9, 8192, 15637632, nof, 0, 58, 0,
|
||||
135, 1, 0, 8192, 15637632, nof, 0, 63, 0,
|
||||
136, 1, 0, 8192, 15637632, non, 0, 60, 23, C4
|
||||
137, 1, 0, 8192, 15637632, nof, 0, 42, 0,
|
||||
138, 1, 0, 8192, 15637632, non, 0, 51, 17, D#3
|
||||
139, 1, 0, 8192, 15637632, non, 0, 42, 21, F#2
|
||||
140, 1, 40, 8232, 15715752, nof, 0, 48, 0,
|
||||
141, 1, 0, 8232, 15715752, nof, 0, 55, 0,
|
||||
142, 1, 94, 8326, 15899334, ctl, 0, 64,127,
|
||||
16, 0, 256, 8448, 16137600,tempo,35,bpm,,
|
||||
143, 1, 122, 8448, 16137600, non, 0, 67, 28, G4
|
||||
17, 0, 256, 8704, 16566144,tempo,30,bpm,,
|
||||
144, 1, 256, 8704, 16566144, nof, 0, 67, 0,
|
||||
145, 1, 0, 8704, 16566144, non, 0, 66, 27, F#4
|
||||
146, 1, 0, 8704, 16566144, nof, 0, 60, 0,
|
||||
147, 1, 0, 8704, 16566144, non, 0, 57, 23, A3
|
||||
148, 1, 0, 8704, 16566144, non, 0, 50, 14, D3
|
||||
149, 1, 13, 8717, 16591533, ctl, 0, 64, 0,
|
||||
150, 1, 27, 8744, 16644264, nof, 0, 51, 0,
|
||||
151, 1, 187, 8931, 17009475, ctl, 0, 64,127,
|
||||
18, 0, 256, 8960, 17066112,tempo,25,bpm,,
|
||||
152, 1, 29, 8960, 17066112, nof, 0, 66, 0,
|
||||
153, 1, 0, 8960, 17066112, non, 0, 65, 25, F4
|
||||
19, 0, 256, 9216, 17665920,tempo,30,bpm,,
|
||||
154, 1, 256, 9216, 17665920, ctl, 0, 64, 0,
|
||||
155, 1, 0, 9216, 17665920, ctl, 0, 64,127,
|
||||
156, 1, 0, 9216, 17665920, ctl, 0, 64, 0,
|
||||
157, 1, 0, 9216, 17665920, nof, 0, 65, 0,
|
||||
158, 1, 0, 9216, 17665920, nof, 0, 57, 0,
|
||||
159, 1, 0, 9216, 17665920, nof, 0, 42, 0,
|
||||
160, 1, 0, 9216, 17665920, non, 0, 69, 43, A4
|
||||
161, 1, 0, 9216, 17665920, non, 0, 42, 15, F#2
|
||||
162, 1, 0, 9216, 17665920, non, 0, 58, 16, A#3
|
||||
163, 1, 0, 9216, 17665920, non, 0, 49, 11, C#3
|
||||
164, 1, 40, 9256, 17744040, nof, 0, 50, 0,
|
||||
165, 1, 67, 9323, 17874891, ctl, 0, 64, 0,
|
||||
166, 1, 149, 9472, 18165888, non, 0, 65, 22, F4
|
||||
167, 1, 11, 9483, 18187371, ctl, 0, 64,127,
|
||||
20, 0, 512, 9728, 18665856,tempo,35,bpm,,
|
||||
168, 1, 245, 9728, 18665856, nof, 0, 65, 0,
|
||||
169, 1, 0, 9728, 18665856, non, 0, 64, 22, E4
|
||||
170, 1, 0, 9728, 18665856, non, 0, 48, 8, C3
|
||||
171, 1, 0, 9728, 18665856, non, 0, 55, 11, G3
|
||||
172, 1, 40, 9768, 18732816, nof, 0, 49, 0,
|
||||
173, 1, 216, 9984, 19094400, nof, 0, 64, 0,
|
||||
174, 1, 0, 9984, 19094400, non, 0, 63, 22, D#4
|
||||
175, 1, 247, 10231, 19507878, ctl, 0, 64, 0,
|
||||
21, 0, 512, 10240, 19522944,tempo,25,bpm,,
|
||||
176, 1, 9, 10240, 19522944, nof, 0, 69, 0,
|
||||
177, 1, 0, 10240, 19522944, nof, 0, 63, 0,
|
||||
178, 1, 0, 10240, 19522944, non, 0, 66, 26, F#4
|
||||
179, 1, 0, 10240, 19522944, non, 0, 72, 44, C5
|
||||
180, 1, 0, 10240, 19522944, nof, 0, 42, 0,
|
||||
181, 1, 0, 10240, 19522944, nof, 0, 58, 0,
|
||||
182, 1, 0, 10240, 19522944, non, 0, 49, 11, C#3
|
||||
183, 1, 0, 10240, 19522944, non, 0, 42, 15, F#2
|
||||
184, 1, 0, 10240, 19522944, non, 0, 58, 16, A#3
|
||||
185, 1, 40, 10280, 19616664, nof, 0, 48, 0,
|
||||
186, 1, 0, 10280, 19616664, nof, 0, 55, 0,
|
||||
187, 1, 94, 10374, 19836906, ctl, 0, 64,127,
|
||||
22, 0, 256, 10496, 20122752,tempo,35,bpm,,
|
||||
188, 1, 122, 10496, 20122752, nof, 0, 66, 0,
|
||||
189, 1, 0, 10496, 20122752, non, 0, 65, 22, F4
|
||||
190, 1, 256, 10752, 20551296, nof, 0, 65, 0,
|
||||
191, 1, 0, 10752, 20551296, non, 0, 64, 22, E4
|
||||
192, 1, 0, 10752, 20551296, nof, 0, 72, 0,
|
||||
193, 1, 0, 10752, 20551296, non, 0, 69, 39, A4
|
||||
194, 1, 0, 10752, 20551296, non, 0, 48, 8, C3
|
||||
195, 1, 0, 10752, 20551296, non, 0, 55, 12, G3
|
||||
196, 1, 13, 10765, 20573058, ctl, 0, 64, 0,
|
||||
197, 1, 27, 10792, 20618256, nof, 0, 49, 0,
|
||||
198, 1, 187, 10979, 20931294, ctl, 0, 64,127,
|
||||
199, 1, 29, 11008, 20979840, nof, 0, 64, 0,
|
||||
200, 1, 0, 11008, 20979840, non, 0, 63, 22, D#4
|
||||
23, 0, 768, 11264, 21408384,tempo,30,bpm,,
|
||||
201, 1, 256, 11264, 21408384, ctl, 0, 64, 0,
|
||||
202, 1, 0, 11264, 21408384, ctl, 0, 64,127,
|
||||
203, 1, 0, 11264, 21408384, ctl, 0, 64, 0,
|
||||
204, 1, 0, 11264, 21408384, nof, 0, 63, 0,
|
||||
205, 1, 0, 11264, 21408384, nof, 0, 69, 0,
|
||||
206, 1, 0, 11264, 21408384, nof, 0, 42, 0,
|
||||
207, 1, 0, 11264, 21408384, nof, 0, 58, 0,
|
||||
208, 1, 0, 11264, 21408384, non, 0, 67, 33, G4
|
||||
209, 1, 0, 11264, 21408384, non, 0, 64, 21, E4
|
||||
210, 1, 0, 11264, 21408384, non, 0, 42, 11, F#2
|
||||
211, 1, 0, 11264, 21408384, non, 0, 58, 12, A#3
|
||||
212, 1, 0, 11264, 21408384, non, 0, 49, 7, C#3
|
||||
213, 1, 40, 11304, 21486504, nof, 0, 48, 0,
|
||||
214, 1, 0, 11304, 21486504, nof, 0, 55, 0,
|
||||
215, 1, 67, 11371, 21617355, ctl, 0, 64, 0,
|
||||
24, 0, 256, 11520, 21908352,tempo,35,bpm,,
|
||||
216, 1, 149, 11520, 21908352, nof, 0, 64, 0,
|
||||
217, 1, 0, 11520, 21908352, non, 0, 63, 22, D#4
|
||||
218, 1, 11, 11531, 21926766, ctl, 0, 64,127,
|
||||
219, 1, 245, 11776, 22336896, nof, 0, 67, 0,
|
||||
220, 1, 0, 11776, 22336896, non, 0, 66, 35, F#4
|
||||
221, 1, 0, 11776, 22336896, non, 0, 48, 8, C3
|
||||
222, 1, 0, 11776, 22336896, non, 0, 55, 12, G3
|
||||
223, 1, 40, 11816, 22403856, nof, 0, 49, 0,
|
||||
224, 1, 216, 12032, 22765440, nof, 0, 63, 0,
|
||||
225, 1, 0, 12032, 22765440, non, 0, 62, 22, D4
|
||||
226, 1, 247, 12279, 23178918, ctl, 0, 64, 0,
|
||||
25, 0, 768, 12288, 23193984,tempo,30,bpm,,
|
||||
227, 1, 9, 12288, 23193984, nof, 0, 62, 0,
|
||||
228, 1, 0, 12288, 23193984, non, 0, 63, 22, D#4
|
||||
229, 1, 0, 12288, 23193984, nof, 0, 66, 0,
|
||||
230, 1, 0, 12288, 23193984, non, 0, 65, 28, F4
|
||||
231, 1, 0, 12288, 23193984, nof, 0, 42, 0,
|
||||
232, 1, 0, 12288, 23193984, nof, 0, 58, 0,
|
||||
233, 1, 0, 12288, 23193984, non, 0, 49, 3, C#3
|
||||
234, 1, 0, 12288, 23193984, non, 0, 42, 7, F#2
|
||||
235, 1, 0, 12288, 23193984, non, 0, 58, 8, A#3
|
||||
236, 1, 40, 12328, 23272104, nof, 0, 48, 0,
|
||||
237, 1, 0, 12328, 23272104, nof, 0, 55, 0,
|
||||
238, 1, 94, 12422, 23455686, ctl, 0, 64,127,
|
||||
239, 1, 122, 12544, 23693952, nof, 0, 63, 0,
|
||||
240, 1, 0, 12544, 23693952, non, 0, 62, 22, D4
|
||||
241, 1, 256, 12800, 24193920, nof, 0, 65, 0,
|
||||
242, 1, 0, 12800, 24193920, non, 0, 64, 24, E4
|
||||
243, 1, 0, 12800, 24193920, non, 0, 48, 8, C3
|
||||
244, 1, 0, 12800, 24193920, non, 0, 55, 12, G3
|
||||
245, 1, 13, 12813, 24219309, ctl, 0, 64, 0,
|
||||
246, 1, 27, 12840, 24272040, nof, 0, 49, 0,
|
||||
247, 1, 187, 13027, 24637251, ctl, 0, 64,127,
|
||||
248, 1, 29, 13056, 24693888, nof, 0, 62, 0,
|
||||
249, 1, 0, 13056, 24693888, non, 0, 61, 15, C#4
|
||||
250, 1, 256, 13312, 25193856, ctl, 0, 64, 0,
|
||||
251, 1, 0, 13312, 25193856, ctl, 0, 64, 0,
|
||||
252, 1, 0, 13312, 25193856, ctl, 0, 64,127,
|
||||
253, 1, 0, 13312, 25193856, ctl, 0, 64, 0,
|
||||
254, 1, 0, 13312, 25193856, nof, 0, 42, 0,
|
||||
255, 1, 0, 13312, 25193856, non, 0, 42, 14, F#2
|
||||
256, 1, 0, 13312, 25193856, non, 0, 49, 10, C#3
|
||||
257, 1, 40, 13352, 25271976, nof, 0, 48, 0,
|
||||
258, 1, 0, 13352, 25271976, nof, 0, 55, 0,
|
||||
259, 1, 62, 13414, 25393062, ctl, 0, 64, 0,
|
||||
260, 1, 118, 13532, 25623516, ctl, 0, 64,127,
|
||||
26, 0, 1536, 13824, 26193792,tempo,35,bpm,,
|
||||
261, 1, 292, 13824, 26193792, nof, 0, 61, 0,
|
||||
262, 1, 0, 13824, 26193792, non, 0, 48, 14, C3
|
||||
263, 1, 0, 13824, 26193792, non, 0, 55, 18, G3
|
||||
264, 1, 40, 13864, 26260752, nof, 0, 49, 0,
|
||||
265, 1, 0, 13864, 26260752, nof, 0, 58, 0,
|
||||
266, 1, 472, 14336, 27050880, nof, 0, 42, 0,
|
||||
267, 1, 0, 14336, 27050880, non, 0, 49, 17, C#3
|
||||
268, 1, 0, 14336, 27050880, non, 0, 42, 21, F#2
|
||||
269, 1, 40, 14376, 27117840, nof, 0, 48, 0,
|
||||
270, 1, 0, 14376, 27117840, nof, 0, 55, 0,
|
||||
271, 1, 216, 14592, 27479424, non, 0, 60, 25, C4
|
||||
27, 0, 1024, 14848, 27907968,tempo,30,bpm,,
|
||||
272, 1, 256, 14848, 27907968, non, 0, 59, 22, B3
|
||||
273, 1, 0, 14848, 27907968, non, 0, 48, 14, C3
|
||||
274, 1, 0, 14848, 27907968, non, 0, 55, 18, G3
|
||||
275, 1, 40, 14888, 27986088, nof, 0, 49, 0,
|
||||
276, 1, 10, 14898, 28005618, nof, 0, 60, 0,
|
||||
277, 1, 206, 15104, 28407936, non, 0, 58, 20, A#3
|
||||
278, 1, 50, 15154, 28505586, nof, 0, 59, 0,
|
||||
28, 0, 512, 15360, 28907904,tempo,35,bpm,,
|
||||
279, 1, 206, 15360, 28907904, ctl, 0, 64, 0,
|
||||
280, 1, 0, 15360, 28907904, ctl, 0, 64,127,
|
||||
281, 1, 0, 15360, 28907904, ctl, 0, 64, 0,
|
||||
282, 1, 0, 15360, 28907904, nof, 0, 64, 0,
|
||||
283, 1, 0, 15360, 28907904, nof, 0, 42, 0,
|
||||
284, 1, 0, 15360, 28907904, non, 0, 42, 21, F#2
|
||||
285, 1, 0, 15360, 28907904, non, 0, 49, 17, C#3
|
||||
286, 1, 40, 15400, 28974864, nof, 0, 48, 0,
|
||||
287, 1, 0, 15400, 28974864, nof, 0, 55, 0,
|
||||
288, 1, 67, 15467, 29087022, ctl, 0, 64, 0,
|
||||
289, 1, 149, 15616, 29336448, non, 0, 65, 27, F4
|
||||
290, 1, 11, 15627, 29354862, ctl, 0, 64,127,
|
||||
29, 0, 512, 15872, 29764992,tempo,30,bpm,,
|
||||
291, 1, 245, 15872, 29764992, non, 0, 64, 24, E4
|
||||
292, 1, 0, 15872, 29764992, non, 0, 48, 14, C3
|
||||
293, 1, 0, 15872, 29764992, non, 0, 55, 18, G3
|
||||
294, 1, 40, 15912, 29843112, nof, 0, 49, 0,
|
||||
295, 1, 10, 15922, 29862642, nof, 0, 65, 0,
|
||||
296, 1, 206, 16128, 30264960, non, 0, 63, 22, D#4
|
||||
297, 1, 50, 16178, 30362610, nof, 0, 64, 0,
|
||||
298, 1, 197, 16375, 30747351, ctl, 0, 64, 0,
|
||||
30, 0, 512, 16384, 30764928,tempo,35,bpm,,
|
||||
299, 1, 9, 16384, 30764928, nof, 0, 58, 0,
|
||||
300, 1, 0, 16384, 30764928, nof, 0, 63, 0,
|
||||
301, 1, 0, 16384, 30764928, nof, 0, 42, 0,
|
||||
302, 1, 0, 16384, 30764928, non, 0, 51, 17, D#3
|
||||
303, 1, 0, 16384, 30764928, non, 0, 42, 21, F#2
|
||||
304, 1, 0, 16384, 30764928, non, 0, 60, 26, C4
|
||||
305, 1, 40, 16424, 30831888, nof, 0, 48, 0,
|
||||
306, 1, 0, 16424, 30831888, nof, 0, 55, 0,
|
||||
307, 1, 94, 16518, 30989244, ctl, 0, 64,127,
|
||||
308, 1, 122, 16640, 31193472, non, 0, 67, 28, G4
|
||||
31, 0, 512, 16896, 31622016,tempo,30,bpm,,
|
||||
309, 1, 256, 16896, 31622016, non, 0, 66, 26, F#4
|
||||
310, 1, 0, 16896, 31622016, non, 0, 71, 50, B4
|
||||
311, 1, 0, 16896, 31622016, non, 0, 50, 14, D3
|
||||
312, 1, 0, 16896, 31622016, non, 0, 57, 18, A3
|
||||
313, 1, 13, 16909, 31647405, ctl, 0, 64, 0,
|
||||
314, 1, 27, 16936, 31700136, nof, 0, 51, 0,
|
||||
315, 1, 10, 16946, 31719666, nof, 0, 67, 0,
|
||||
316, 1, 177, 17123, 32065347, ctl, 0, 64,127,
|
||||
317, 1, 25, 17148, 32114172, nof, 0, 42, 0,
|
||||
318, 1, 4, 17152, 32121984, non, 0, 65, 24, F4
|
||||
319, 1, 50, 17202, 32219634, nof, 0, 66, 0,
|
||||
320, 1, 78, 17280, 32371968, non, 0, 42, 21, F#2
|
||||
32, 0, 512, 17408, 32621952,tempo,25,bpm,,
|
||||
321, 1, 128, 17408, 32621952, ctl, 0, 64, 0,
|
||||
322, 1, 0, 17408, 32621952, ctl, 0, 64,127,
|
||||
323, 1, 0, 17408, 32621952, ctl, 0, 64, 0,
|
||||
324, 1, 0, 17408, 32621952, ctl, 0, 64, 0,
|
||||
325, 1, 0, 17408, 32621952, nof, 0, 71, 0,
|
||||
326, 1, 0, 17408, 32621952, nof, 0, 60, 0,
|
||||
327, 1, 0, 17408, 32621952, non, 0, 72, 51, C5
|
||||
328, 1, 0, 17408, 32621952, non, 0, 66, 30, F#4
|
||||
329, 1, 0, 17408, 32621952, non, 0, 58, 26, A#3
|
||||
330, 1, 0, 17408, 32621952, non, 0, 49, 17, C#3
|
||||
331, 1, 40, 17448, 32715672, nof, 0, 50, 0,
|
||||
332, 1, 0, 17448, 32715672, nof, 0, 57, 0,
|
||||
333, 1, 10, 17458, 32739102, nof, 0, 65, 0,
|
||||
334, 1, 57, 17515, 32872653, ctl, 0, 64, 0,
|
||||
33, 0, 256, 17664, 33221760,tempo,30,bpm,,
|
||||
335, 1, 149, 17664, 33221760, non, 0, 65, 29, F4
|
||||
336, 1, 11, 17675, 33243243, ctl, 0, 64,127,
|
||||
337, 1, 39, 17714, 33319410, nof, 0, 66, 0,
|
||||
34, 0, 256, 17920, 33721728,tempo,35,bpm,,
|
||||
338, 1, 206, 17920, 33721728, non, 0, 64, 28, E4
|
||||
339, 1, 0, 17920, 33721728, non, 0, 48, 14, C3
|
||||
340, 1, 0, 17920, 33721728, non, 0, 55, 18, G3
|
||||
341, 1, 40, 17960, 33788688, nof, 0, 49, 0,
|
||||
342, 1, 10, 17970, 33805428, nof, 0, 65, 0,
|
||||
343, 1, 202, 18172, 34143576, nof, 0, 42, 0,
|
||||
344, 1, 4, 18176, 34150272, non, 0, 63, 27, D#4
|
||||
345, 1, 50, 18226, 34233972, nof, 0, 64, 0,
|
||||
346, 1, 78, 18304, 34364544, non, 0, 42, 13, F#2
|
||||
347, 1, 119, 18423, 34563750, ctl, 0, 64, 0,
|
||||
35, 0, 512, 18432, 34578816,tempo,25,bpm,,
|
||||
348, 1, 9, 18432, 34578816, nof, 0, 72, 0,
|
||||
349, 1, 0, 18432, 34578816, non, 0, 66, 10, F#4
|
||||
350, 1, 0, 18432, 34578816, non, 0, 72, 23, C5
|
||||
351, 1, 0, 18432, 34578816, non, 0, 75, 51, D#5
|
||||
352, 1, 0, 18432, 34578816, nof, 0, 58, 0,
|
||||
353, 1, 0, 18432, 34578816, non, 0, 49, 9, C#3
|
||||
354, 1, 0, 18432, 34578816, non, 0, 58, 18, A#3
|
||||
355, 1, 40, 18472, 34672536, nof, 0, 48, 0,
|
||||
356, 1, 0, 18472, 34672536, nof, 0, 55, 0,
|
||||
357, 1, 10, 18482, 34695966, nof, 0, 63, 0,
|
||||
358, 1, 84, 18566, 34892778, ctl, 0, 64,127,
|
||||
36, 0, 256, 18688, 35178624,tempo,30,bpm,,
|
||||
359, 1, 122, 18688, 35178624, non, 0, 65, 15, F4
|
||||
360, 1, 50, 18738, 35276274, nof, 0, 66, 0,
|
||||
361, 1, 206, 18944, 35678592, non, 0, 64, 18, E4
|
||||
362, 1, 0, 18944, 35678592, nof, 0, 72, 0,
|
||||
363, 1, 0, 18944, 35678592, non, 0, 69, 21, A4
|
||||
364, 1, 0, 18944, 35678592, non, 0, 72, 44, C5
|
||||
365, 1, 0, 18944, 35678592, non, 0, 48, 14, C3
|
||||
366, 1, 0, 18944, 35678592, non, 0, 55, 18, G3
|
||||
367, 1, 13, 18957, 35703981, ctl, 0, 64, 0,
|
||||
368, 1, 27, 18984, 35756712, nof, 0, 49, 0,
|
||||
369, 1, 10, 18994, 35776242, nof, 0, 65, 0,
|
||||
370, 1, 0, 18994, 35776242, nof, 0, 75, 0,
|
||||
371, 1, 177, 19171, 36121923, ctl, 0, 64,127,
|
||||
37, 0, 512, 19200, 36178560,tempo,35,bpm,,
|
||||
372, 1, 29, 19200, 36178560, non, 0, 63, 16, D#4
|
||||
373, 1, 50, 19250, 36262260, nof, 0, 64, 0,
|
||||
38, 0, 256, 19456, 36607104,tempo,30,bpm,,
|
||||
374, 1, 206, 19456, 36607104, ctl, 0, 64, 0,
|
||||
375, 1, 0, 19456, 36607104, ctl, 0, 64,127,
|
||||
376, 1, 0, 19456, 36607104, ctl, 0, 64, 0,
|
||||
377, 1, 0, 19456, 36607104, ctl, 0, 64, 0,
|
||||
378, 1, 0, 19456, 36607104, nof, 0, 42, 0,
|
||||
379, 1, 0, 19456, 36607104, nof, 0, 58, 0,
|
||||
380, 1, 0, 19456, 36607104, non, 0, 67, 25, G4
|
||||
381, 1, 0, 19456, 36607104, non, 0, 70, 41, A#4
|
||||
382, 1, 0, 19456, 36607104, non, 0, 64, 19, E4
|
||||
383, 1, 0, 19456, 36607104, non, 0, 42, 14, F#2
|
||||
384, 1, 0, 19456, 36607104, non, 0, 58, 13, A#3
|
||||
385, 1, 0, 19456, 36607104, non, 0, 49, 10, C#3
|
||||
386, 1, 40, 19496, 36685224, nof, 0, 48, 0,
|
||||
387, 1, 0, 19496, 36685224, nof, 0, 55, 0,
|
||||
388, 1, 10, 19506, 36704754, nof, 0, 63, 0,
|
||||
389, 1, 0, 19506, 36704754, nof, 0, 69, 0,
|
||||
390, 1, 0, 19506, 36704754, nof, 0, 72, 0,
|
||||
391, 1, 57, 19563, 36816075, ctl, 0, 64, 0,
|
||||
39, 0, 256, 19712, 37107072,tempo,35,bpm,,
|
||||
392, 1, 149, 19712, 37107072, non, 0, 63, 23, D#4
|
||||
393, 1, 11, 19723, 37125486, ctl, 0, 64,127,
|
||||
394, 1, 39, 19762, 37190772, nof, 0, 64, 0,
|
||||
395, 1, 206, 19968, 37535616, non, 0, 66, 21, F#4
|
||||
396, 1, 0, 19968, 37535616, non, 0, 69, 35, A4
|
||||
397, 1, 0, 19968, 37535616, non, 0, 48, 14, C3
|
||||
398, 1, 0, 19968, 37535616, non, 0, 55, 18, G3
|
||||
399, 1, 40, 20008, 37602576, nof, 0, 49, 0,
|
||||
400, 1, 10, 20018, 37619316, nof, 0, 67, 0,
|
||||
401, 1, 0, 20018, 37619316, nof, 0, 70, 0,
|
||||
402, 1, 206, 20224, 37964160, non, 0, 62, 18, D4
|
||||
403, 1, 50, 20274, 38047860, nof, 0, 63, 0,
|
||||
404, 1, 197, 20471, 38377638, ctl, 0, 64, 0,
|
||||
40, 0, 768, 20480, 38392704,tempo,30,bpm,,
|
||||
405, 1, 9, 20480, 38392704, non, 0, 63, 17, D#4
|
||||
406, 1, 0, 20480, 38392704, non, 0, 65, 20, F4
|
||||
407, 1, 0, 20480, 38392704, non, 0, 68, 27, G#4
|
||||
408, 1, 0, 20480, 38392704, nof, 0, 42, 0,
|
||||
409, 1, 0, 20480, 38392704, nof, 0, 58, 0,
|
||||
410, 1, 0, 20480, 38392704, non, 0, 49, 10, C#3
|
||||
411, 1, 0, 20480, 38392704, non, 0, 42, 14, F#2
|
||||
412, 1, 0, 20480, 38392704, non, 0, 58, 13, A#3
|
||||
413, 1, 40, 20520, 38470824, nof, 0, 48, 0,
|
||||
414, 1, 0, 20520, 38470824, nof, 0, 55, 0,
|
||||
415, 1, 10, 20530, 38490354, nof, 0, 62, 0,
|
||||
416, 1, 0, 20530, 38490354, nof, 0, 66, 0,
|
||||
417, 1, 0, 20530, 38490354, nof, 0, 69, 0,
|
||||
418, 1, 84, 20614, 38654406, ctl, 0, 64,127,
|
||||
41, 0, 256, 20736, 38892672,tempo,35,bpm,,
|
||||
419, 1, 122, 20736, 38892672, non, 0, 62, 17, D4
|
||||
420, 1, 50, 20786, 38976372, nof, 0, 63, 0,
|
||||
421, 1, 206, 20992, 39321216, non, 0, 64, 13, E4
|
||||
422, 1, 0, 20992, 39321216, non, 0, 67, 22, G4
|
||||
423, 1, 0, 20992, 39321216, non, 0, 48, 14, C3
|
||||
424, 1, 0, 20992, 39321216, non, 0, 55, 18, G3
|
||||
425, 1, 13, 21005, 39342978, ctl, 0, 64, 0,
|
||||
426, 1, 27, 21032, 39388176, nof, 0, 49, 0,
|
||||
427, 1, 10, 21042, 39404916, nof, 0, 65, 0,
|
||||
428, 1, 0, 21042, 39404916, nof, 0, 68, 0,
|
||||
429, 1, 177, 21219, 39701214, ctl, 0, 64,127,
|
||||
430, 1, 29, 21248, 39749760, non, 0, 61, 12, C#4
|
||||
431, 1, 50, 21298, 39833460, nof, 0, 62, 0,
|
||||
432, 1, 206, 21504, 40178304, ctl, 0, 64, 0,
|
||||
433, 1, 0, 21504, 40178304, ctl, 0, 64,127,
|
||||
434, 1, 0, 21504, 40178304, ctl, 0, 64, 0,
|
||||
435, 1, 0, 21504, 40178304, ctl, 0, 64, 0,
|
||||
436, 1, 0, 21504, 40178304, nof, 0, 61, 0,
|
||||
437, 1, 0, 21504, 40178304, nof, 0, 42, 0,
|
||||
438, 1, 0, 21504, 40178304, nof, 0, 58, 0,
|
||||
439, 1, 0, 21504, 40178304, non, 0, 42, 16, F#2
|
||||
440, 1, 0, 21504, 40178304, non, 0, 60, 16, C4
|
||||
441, 1, 0, 21504, 40178304, non, 0, 51, 7, D#3
|
||||
442, 1, 40, 21544, 40245264, nof, 0, 48, 0,
|
||||
443, 1, 0, 21544, 40245264, nof, 0, 55, 0,
|
||||
444, 1, 10, 21554, 40262004, nof, 0, 64, 0,
|
||||
445, 1, 0, 21554, 40262004, nof, 0, 67, 0,
|
||||
446, 1, 57, 21611, 40357422, ctl, 0, 64, 0,
|
||||
447, 1, 149, 21760, 40606848, non, 0, 67, 28, G4
|
||||
448, 1, 11, 21771, 40625262, ctl, 0, 64,127,
|
||||
42, 0, 1280, 22016, 41035392,tempo,30,bpm,,
|
||||
449, 1, 245, 22016, 41035392, non, 0, 66, 28, F#4
|
||||
450, 1, 0, 22016, 41035392, non, 0, 71, 47, B4
|
||||
451, 1, 0, 22016, 41035392, non, 0, 50, 14, D3
|
||||
452, 1, 0, 22016, 41035392, non, 0, 57, 18, A3
|
||||
453, 1, 40, 22056, 41113512, nof, 0, 51, 0,
|
||||
454, 1, 10, 22066, 41133042, nof, 0, 67, 0,
|
||||
455, 1, 202, 22268, 41527548, nof, 0, 42, 0,
|
||||
456, 1, 4, 22272, 41535360, non, 0, 65, 27, F4
|
||||
457, 1, 50, 22322, 41633010, nof, 0, 66, 0,
|
||||
458, 1, 78, 22400, 41785344, non, 0, 42, 16, F#2
|
||||
459, 1, 119, 22519, 42017751, ctl, 0, 64, 0,
|
||||
43, 0, 512, 22528, 42035328,tempo,25,bpm,,
|
||||
460, 1, 9, 22528, 42035328, non, 0, 72, 51, C5
|
||||
461, 1, 0, 22528, 42035328, non, 0, 66, 26, F#4
|
||||
462, 1, 0, 22528, 42035328, nof, 0, 60, 0,
|
||||
463, 1, 0, 22528, 42035328, non, 0, 49, 7, C#3
|
||||
464, 1, 0, 22528, 42035328, non, 0, 58, 16, A#3
|
||||
465, 1, 40, 22568, 42129048, nof, 0, 50, 0,
|
||||
466, 1, 0, 22568, 42129048, nof, 0, 57, 0,
|
||||
467, 1, 10, 22578, 42152478, nof, 0, 71, 0,
|
||||
468, 1, 0, 22578, 42152478, nof, 0, 65, 0,
|
||||
469, 1, 84, 22662, 42349290, ctl, 0, 64,127,
|
||||
44, 0, 256, 22784, 42635136,tempo,30,bpm,,
|
||||
470, 1, 122, 22784, 42635136, non, 0, 65, 24, F4
|
||||
471, 1, 50, 22834, 42732786, nof, 0, 66, 0,
|
||||
45, 0, 256, 23040, 43135104,tempo,35,bpm,,
|
||||
472, 1, 206, 23040, 43135104, non, 0, 69, 47, A4
|
||||
473, 1, 0, 23040, 43135104, non, 0, 64, 23, E4
|
||||
474, 1, 0, 23040, 43135104, non, 0, 48, 14, C3
|
||||
475, 1, 0, 23040, 43135104, non, 0, 55, 18, G3
|
||||
476, 1, 13, 23053, 43156866, ctl, 0, 64, 0,
|
||||
477, 1, 27, 23080, 43202064, nof, 0, 49, 0,
|
||||
478, 1, 10, 23090, 43218804, nof, 0, 72, 0,
|
||||
479, 1, 0, 23090, 43218804, nof, 0, 65, 0,
|
||||
480, 1, 177, 23267, 43515102, ctl, 0, 64,127,
|
||||
481, 1, 29, 23296, 43563648, non, 0, 63, 22, D#4
|
||||
482, 1, 50, 23346, 43647348, nof, 0, 64, 0,
|
||||
46, 0, 512, 23552, 43992192,tempo,30,bpm,,
|
||||
483, 1, 206, 23552, 43992192, ctl, 0, 64, 0,
|
||||
484, 1, 0, 23552, 43992192, ctl, 0, 64,127,
|
||||
485, 1, 0, 23552, 43992192, ctl, 0, 64, 0,
|
||||
486, 1, 0, 23552, 43992192, ctl, 0, 64, 0,
|
||||
487, 1, 0, 23552, 43992192, nof, 0, 42, 0,
|
||||
488, 1, 0, 23552, 43992192, nof, 0, 58, 0,
|
||||
489, 1, 0, 23552, 43992192, non, 0, 70, 47, A#4
|
||||
490, 1, 0, 23552, 43992192, non, 0, 68, 28, G#4
|
||||
491, 1, 0, 23552, 43992192, non, 0, 42, 19, F#2
|
||||
492, 1, 0, 23552, 43992192, non, 0, 60, 19, C4
|
||||
493, 1, 0, 23552, 43992192, non, 0, 51, 10, D#3
|
||||
494, 1, 40, 23592, 44070312, nof, 0, 48, 0,
|
||||
495, 1, 0, 23592, 44070312, nof, 0, 55, 0,
|
||||
496, 1, 10, 23602, 44089842, nof, 0, 69, 0,
|
||||
497, 1, 0, 23602, 44089842, nof, 0, 63, 0,
|
||||
498, 1, 57, 23659, 44201163, ctl, 0, 64, 0,
|
||||
47, 0, 256, 23808, 44492160,tempo,35,bpm,,
|
||||
499, 1, 149, 23808, 44492160, non, 0, 67, 26, G4
|
||||
500, 1, 11, 23819, 44510574, ctl, 0, 64,127,
|
||||
501, 1, 39, 23858, 44575860, nof, 0, 68, 0,
|
||||
48, 0, 256, 24064, 44920704,tempo,30,bpm,,
|
||||
502, 1, 206, 24064, 44920704, non, 0, 66, 24, F#4
|
||||
503, 1, 0, 24064, 44920704, non, 0, 71, 49, B4
|
||||
504, 1, 0, 24064, 44920704, non, 0, 50, 14, D3
|
||||
505, 1, 0, 24064, 44920704, non, 0, 57, 18, A3
|
||||
506, 1, 40, 24104, 44998824, nof, 0, 51, 0,
|
||||
507, 1, 10, 24114, 45018354, nof, 0, 70, 0,
|
||||
508, 1, 0, 24114, 45018354, nof, 0, 67, 0,
|
||||
509, 1, 202, 24316, 45412860, nof, 0, 42, 0,
|
||||
510, 1, 4, 24320, 45420672, non, 0, 65, 22, F4
|
||||
511, 1, 50, 24370, 45518322, nof, 0, 66, 0,
|
||||
512, 1, 78, 24448, 45670656, non, 0, 42, 19, F#2
|
||||
513, 1, 119, 24567, 45903063, ctl, 0, 64, 0,
|
||||
49, 0, 512, 24576, 45920640,tempo,25,bpm,,
|
||||
514, 1, 9, 24576, 45920640, non, 0, 66, 26, F#4
|
||||
515, 1, 0, 24576, 45920640, non, 0, 72, 51, C5
|
||||
516, 1, 0, 24576, 45920640, nof, 0, 60, 0,
|
||||
517, 1, 0, 24576, 45920640, non, 0, 49, 10, C#3
|
||||
518, 1, 0, 24576, 45920640, non, 0, 58, 19, A#3
|
||||
519, 1, 40, 24616, 46014360, nof, 0, 50, 0,
|
||||
520, 1, 0, 24616, 46014360, nof, 0, 57, 0,
|
||||
521, 1, 10, 24626, 46037790, nof, 0, 65, 0,
|
||||
522, 1, 0, 24626, 46037790, nof, 0, 71, 0,
|
||||
523, 1, 84, 24710, 46234602, ctl, 0, 64,127,
|
||||
50, 0, 256, 24832, 46520448,tempo,30,bpm,,
|
||||
524, 1, 122, 24832, 46520448, non, 0, 65, 24, F4
|
||||
525, 1, 50, 24882, 46618098, nof, 0, 66, 0,
|
||||
51, 0, 256, 25088, 47020416,tempo,35,bpm,,
|
||||
526, 1, 206, 25088, 47020416, non, 0, 64, 22, E4
|
||||
527, 1, 0, 25088, 47020416, non, 0, 69, 37, A4
|
||||
528, 1, 0, 25088, 47020416, non, 0, 48, 14, C3
|
||||
529, 1, 0, 25088, 47020416, non, 0, 55, 18, G3
|
||||
530, 1, 13, 25101, 47042178, ctl, 0, 64, 0,
|
||||
531, 1, 27, 25128, 47087376, nof, 0, 49, 0,
|
||||
532, 1, 10, 25138, 47104116, nof, 0, 65, 0,
|
||||
533, 1, 0, 25138, 47104116, nof, 0, 72, 0,
|
||||
534, 1, 177, 25315, 47400414, ctl, 0, 64,127,
|
||||
535, 1, 29, 25344, 47448960, non, 0, 63, 20, D#4
|
||||
536, 1, 50, 25394, 47532660, nof, 0, 64, 0,
|
||||
52, 0, 512, 25600, 47877504,tempo,30,bpm,,
|
||||
537, 1, 206, 25600, 47877504, ctl, 0, 64, 0,
|
||||
538, 1, 0, 25600, 47877504, ctl, 0, 64,127,
|
||||
539, 1, 0, 25600, 47877504, ctl, 0, 64, 0,
|
||||
540, 1, 0, 25600, 47877504, ctl, 0, 64, 0,
|
||||
541, 1, 0, 25600, 47877504, nof, 0, 42, 0,
|
||||
542, 1, 0, 25600, 47877504, nof, 0, 58, 0,
|
||||
543, 1, 0, 25600, 47877504, non, 0, 66, 25, F#4
|
||||
544, 1, 0, 25600, 47877504, non, 0, 42, 19, F#2
|
||||
545, 1, 0, 25600, 47877504, non, 0, 58, 19, A#3
|
||||
546, 1, 0, 25600, 47877504, non, 0, 49, 10, C#3
|
||||
547, 1, 40, 25640, 47955624, nof, 0, 48, 0,
|
||||
548, 1, 0, 25640, 47955624, nof, 0, 55, 0,
|
||||
549, 1, 10, 25650, 47975154, nof, 0, 63, 0,
|
||||
550, 1, 52, 25702, 48076710, ctl, 0, 64, 0,
|
||||
551, 1, 118, 25820, 48307164, ctl, 0, 64,127,
|
||||
53, 0, 256, 25856, 48377472,tempo,35,bpm,,
|
||||
552, 1, 36, 25856, 48377472, non, 0, 65, 23, F4
|
||||
553, 1, 50, 25906, 48461172, nof, 0, 66, 0,
|
||||
554, 1, 206, 26112, 48806016, non, 0, 64, 22, E4
|
||||
555, 1, 0, 26112, 48806016, non, 0, 48, 14, C3
|
||||
556, 1, 0, 26112, 48806016, non, 0, 55, 18, G3
|
||||
557, 1, 40, 26152, 48872976, nof, 0, 49, 0,
|
||||
558, 1, 10, 26162, 48889716, nof, 0, 65, 0,
|
||||
559, 1, 206, 26368, 49234560, non, 0, 63, 20, D#4
|
||||
560, 1, 50, 26418, 49318260, nof, 0, 64, 0,
|
||||
54, 0, 768, 26624, 49663104,tempo,30,bpm,,
|
||||
561, 1, 206, 26624, 49663104, nof, 0, 42, 0,
|
||||
562, 1, 0, 26624, 49663104, non, 0, 49, 10, C#3
|
||||
563, 1, 0, 26624, 49663104, non, 0, 42, 19, F#2
|
||||
564, 1, 40, 26664, 49741224, nof, 0, 48, 0,
|
||||
565, 1, 0, 26664, 49741224, nof, 0, 55, 0,
|
||||
566, 1, 10, 26674, 49760754, nof, 0, 69, 0,
|
||||
567, 1, 0, 26674, 49760754, nof, 0, 63, 0,
|
||||
568, 1, 206, 26880, 50163072, non, 0, 65, 25, F4
|
||||
569, 1, 256, 27136, 50663040, non, 0, 64, 22, E4
|
||||
570, 1, 0, 27136, 50663040, non, 0, 48, 14, C3
|
||||
571, 1, 0, 27136, 50663040, non, 0, 55, 18, G3
|
||||
572, 1, 40, 27176, 50741160, nof, 0, 49, 0,
|
||||
573, 1, 10, 27186, 50760690, nof, 0, 65, 0,
|
||||
574, 1, 206, 27392, 51163008, non, 0, 63, 20, D#4
|
||||
575, 1, 50, 27442, 51260658, nof, 0, 64, 0,
|
||||
576, 1, 206, 27648, 51662976, ctl, 0, 64, 0,
|
||||
577, 1, 0, 27648, 51662976, ctl, 0, 64, 0,
|
||||
578, 1, 0, 27648, 51662976, nof, 0, 42, 0,
|
||||
579, 1, 0, 27648, 51662976, nof, 0, 58, 0,
|
||||
580, 1, 0, 27648, 51662976, non, 0, 42, 12, F#2
|
||||
581, 1, 0, 27648, 51662976, non, 0, 49, 12, C#3
|
||||
582, 1, 40, 27688, 51741096, nof, 0, 48, 0,
|
||||
583, 1, 0, 27688, 51741096, nof, 0, 55, 0,
|
||||
584, 1, 10, 27698, 51760626, nof, 0, 63, 0,
|
||||
55, 0, 1280, 27904, 52162944,tempo,25,bpm,,
|
||||
585, 1, 206, 27904, 52162944, non, 0, 60, 22, C4
|
||||
586, 1, 256, 28160, 52762752, non, 0, 59, 21, B3
|
||||
587, 1, 0, 28160, 52762752, non, 0, 48, 12, C3
|
||||
588, 1, 0, 28160, 52762752, non, 0, 55, 12, G3
|
||||
589, 1, 40, 28200, 52856472, nof, 0, 49, 0,
|
||||
590, 1, 10, 28210, 52879902, nof, 0, 60, 0,
|
||||
591, 1, 206, 28416, 53362560, non, 0, 58, 19, A#3
|
||||
592, 1, 50, 28466, 53479710, nof, 0, 59, 0,
|
||||
593, 1, 206, 28672, 53962368, nof, 0, 42, 0,
|
||||
594, 1, 0, 28672, 53962368, non, 0, 42, 12, F#2
|
||||
595, 1, 0, 28672, 53962368, non, 0, 49, 12, C#3
|
||||
596, 1, 40, 28712, 54056088, nof, 0, 48, 0,
|
||||
597, 1, 0, 28712, 54056088, nof, 0, 55, 0,
|
||||
598, 1, 216, 28928, 54562176, nof, 0, 58, 0,
|
||||
599, 1, 256, 29184, 55161984, non, 0, 48, 10, C3
|
||||
600, 1, 0, 29184, 55161984, non, 0, 55, 10, G3
|
||||
601, 1, 40, 29224, 55255704, nof, 0, 49, 0,
|
||||
602, 1, 216, 29440, 55761792, non, 0, 30, 9, F#1
|
||||
56, 0, 1728, 29632, 56211648,tempo,15,bpm,,
|
||||
603, 1, 192, 29632, 56211648, nof, 0, 42, 0,
|
||||
604, 1, 0, 29632, 56211648, non, 0, 42, 9, F#2
|
||||
57, 0, 64, 29696, 56461632,tempo,25,bpm,,
|
||||
605, 1, 64, 29696, 56461632, ctl, 0, 64,127,
|
||||
606, 1, 0, 29696, 56461632, ctl, 0, 64,127,
|
||||
607, 1, 0, 29696, 56461632, nof, 0, 48, 0,
|
||||
608, 1, 0, 29696, 56461632, nof, 0, 55, 0,
|
||||
609, 1, 0, 29696, 56461632, non, 0, 69, 34, A4
|
||||
610, 1, 0, 29696, 56461632, non, 0, 49, 9, C#3
|
||||
58, 0, 1024, 30720, 58860864,tempo,25,bpm,,
|
||||
611, 1, 1024, 30720, 58860864, non, 0, 72, 33, C5
|
||||
612, 1, 50, 30770, 58978014, nof, 0, 69, 0,
|
||||
59, 0, 512, 31232, 60060480,tempo,30,bpm,,
|
||||
613, 1, 462, 31232, 60060480, non, 0, 69, 30, A4
|
||||
614, 1, 50, 31282, 60158130, nof, 0, 72, 0,
|
||||
60, 0, 512, 31744, 61060416,tempo,25,bpm,,
|
||||
615, 1, 462, 31744, 61060416, ctl, 0, 64,127,
|
||||
616, 1, 0, 31744, 61060416, ctl, 0, 64,127,
|
||||
617, 1, 0, 31744, 61060416, non, 0, 67, 29, G4
|
||||
618, 1, 50, 31794, 61177566, nof, 0, 69, 0,
|
||||
61, 0, 512, 32256, 62260032,tempo,20,bpm,,
|
||||
619, 1, 462, 32256, 62260032, non, 0, 66, 26, F#4
|
||||
620, 1, 50, 32306, 62406482, nof, 0, 67, 0,
|
||||
62, 0, 512, 32768, 63759680,tempo,15,bpm,,
|
||||
621, 1, 462, 32768, 63759680, non, 0, 65, 23, F4
|
||||
622, 1, 50, 32818, 63954980, nof, 0, 66, 0,
|
||||
623, 1, 462, 33280, 65759552, non, 0, 64, 16, E4
|
||||
624, 1, 50, 33330, 65954852, nof, 0, 65, 0,
|
||||
625, 1, 462, 33792, 67759424, ctl, 0, 64,127,
|
||||
626, 1, 0, 33792, 67759424, ctl, 0, 64,127,
|
||||
627, 1, 512, 34304, 69759296, nof, 0, 64, 0,
|
||||
628, 1, 0, 34304, 69759296, nof, 0, 30, 0,
|
||||
629, 1, 0, 34304, 69759296, nof, 0, 42, 0,
|
||||
630, 1, 0, 34304, 69759296, nof, 0, 49, 0,
|
||||
63, 0, 2048, 34816, 71759168,tempo,35,bpm,,
|
||||
64, 0, 1024, 35840, 73473344,tempo,222,bpm,,
|
||||
631, 1, 1536, 35840, 73473344, ctl, 0, 64, 0,
|
||||
632, 1, 0, 35840, 73473344, ctl, 0, 64, 0,
|
||||
633, 1, 2048, 37888, 74011968, ctl, 0, 64, 0,
|
||||
634, 1, 0, 37888, 74011968, ctl, 0, 64, 0,
|
||||
65, 0, 2049, 37889, 74012231,eot,,,,
|
||||
635, 1, 1, 37889, 74012231,eot,,,,
|
|
16620
src/cwtest/cfg/gutim_full/scriabin/scriabin_sonate_7_op64.csv
Normal file
16620
src/cwtest/cfg/gutim_full/scriabin/scriabin_sonate_7_op64.csv
Normal file
File diff suppressed because it is too large
Load Diff
BIN
src/cwtest/cfg/gutim_full/scriabin/scriabin_sonate_7_op64.mid
Normal file
BIN
src/cwtest/cfg/gutim_full/scriabin/scriabin_sonate_7_op64.mid
Normal file
Binary file not shown.
@ -81,29 +81,29 @@
|
||||
3,
|
||||
5,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
12,
|
||||
15,
|
||||
18,
|
||||
22,
|
||||
26,
|
||||
30,
|
||||
34,
|
||||
36,
|
||||
40,
|
||||
44,
|
||||
48,
|
||||
52,
|
||||
56,
|
||||
60,
|
||||
64,
|
||||
66,
|
||||
72,
|
||||
76,
|
||||
80,
|
||||
83
|
||||
19,
|
||||
21,
|
||||
25,
|
||||
29,
|
||||
31,
|
||||
35,
|
||||
39,
|
||||
43,
|
||||
47,
|
||||
51,
|
||||
55,
|
||||
59,
|
||||
61,
|
||||
67,
|
||||
73,
|
||||
77,
|
||||
80
|
||||
],
|
||||
"enableFl": false,
|
||||
"enableFl": true,
|
||||
"defaultFl": false,
|
||||
"device": "piano",
|
||||
"name": "spirio_1"
|
||||
|
120
src/cwtest/cfg/gutim_full/vel_table/vel_table_perf_scriabin.json
Normal file
120
src/cwtest/cfg/gutim_full/vel_table/vel_table_perf_scriabin.json
Normal file
@ -0,0 +1,120 @@
|
||||
{
|
||||
"tables": [
|
||||
{
|
||||
"table": [
|
||||
1,
|
||||
5,
|
||||
10,
|
||||
16,
|
||||
21,
|
||||
26,
|
||||
32,
|
||||
37,
|
||||
42,
|
||||
48,
|
||||
53,
|
||||
58,
|
||||
64,
|
||||
69,
|
||||
74,
|
||||
80,
|
||||
85,
|
||||
90,
|
||||
96,
|
||||
101,
|
||||
106,
|
||||
112,
|
||||
117,
|
||||
122,
|
||||
127
|
||||
],
|
||||
"enableFl": true,
|
||||
"defaultFl": true,
|
||||
"device": "sampler",
|
||||
"name": "ivory"
|
||||
},
|
||||
{
|
||||
// 1 2 3 4 5 6 7 8 9 0 1 2
|
||||
// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7
|
||||
"table": [1, 1, 1, 4, 4, 4, 4, 6, 6, 6, 6, 9, 9, 9, 9, 10, 10, 11, 12, 13, 14, 14, 15, 15, 17, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 43, 43, 46, 48, 49, 52, 54, 56, 59, 59, 62, 63, 65, 68, 69, 68, 70, 75, 77, 81, 82, 82, 83, 83, 83, 87, 85, 87, 87, 89, 92, 92, 99, 105, 101, 102, 104, 102, 103, 103, 105, 100, 102, 103, 101, 106, 106, 106, 106, 106, 107, 107, 107, 107, 110, 110, 110, 110, 110, 110, 111, 112, 113, 115, 116, 117, 118, 120, 120, 121, 121, 122, 122, 122, 124, 124, 124, 125, 125, 125],
|
||||
"enableFl": false,
|
||||
"defaultFl": false,
|
||||
"device": "sampler",
|
||||
"name": "calced"
|
||||
},
|
||||
{
|
||||
"table": [
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
3,
|
||||
5,
|
||||
8,
|
||||
10,
|
||||
13,
|
||||
16,
|
||||
20,
|
||||
24,
|
||||
28,
|
||||
33,
|
||||
38,
|
||||
43,
|
||||
49,
|
||||
55,
|
||||
62,
|
||||
68,
|
||||
72,
|
||||
85,
|
||||
94,
|
||||
103,
|
||||
112
|
||||
],
|
||||
"enableFl": true,
|
||||
"defaultFl": true,
|
||||
"device": "piano",
|
||||
"name": "spirio"
|
||||
},
|
||||
{
|
||||
"table": [
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
4,
|
||||
4,
|
||||
5,
|
||||
7,
|
||||
9,
|
||||
11,
|
||||
13,
|
||||
16,
|
||||
20,
|
||||
24,
|
||||
28,
|
||||
33,
|
||||
38,
|
||||
43,
|
||||
49,
|
||||
55,
|
||||
62,
|
||||
68,
|
||||
72,
|
||||
76,
|
||||
80,
|
||||
85
|
||||
],
|
||||
"enableFl": false,
|
||||
"defaultFl": false,
|
||||
"device": "piano",
|
||||
"name": "spirio_1"
|
||||
}
|
||||
|
||||
],
|
||||
"incr_pitch": 3,
|
||||
"max_pitch": 108,
|
||||
"min_pitch": 22,
|
||||
"pseq_velocity": 64,
|
||||
"vseq_pitch": 60,
|
||||
"note_off_ms": 250,
|
||||
"note_on_ms": 500
|
||||
}
|
Loading…
Reference in New Issue
Block a user