-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
52 lines (52 loc) · 1.49 KB
/
config.json
File metadata and controls
52 lines (52 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"audio": {
"sr": 44100,
"tts_sr": 24000,
"mono": true,
"hop_length": 1024,
"n_fft": 1024
},
"features": {
"n_mfcc": 13
},
"segmentation": {
"min_duration": 0.8,
"max_duration": 5.0,
"k_clusters": 5
},
"paths": {
"input_dir": "audio/Audio_Raw_Materials",
"segments_dir": "audio/Segmented_Audio",
"filtered_segments_dir": "audio/Segmented_Audio_Filtered",
"filtered_segments_dir_test": "tests/Filtered_Segments_Dir_Test",
"chord_output_dir": "audio/Chord_Outputs",
"spray_notes_dir": "audio/Spray_Notes",
"output_tone_file": "audio/Sine_Tones",
"measure_audio_files": "audio/measure_audio_files"
},
"chord_builder": {
"chord_input_dir": "audio/Audio_Chord_Materials/components",
"default_bit_depth": 16,
"generate_metadata": true,
"metadata_format": "txt",
"normalize_output": true
},
"spray_notes": {
"density_notes_per_second": 0.3,
"total_duration": 80,
"lower_freq": 30,
"upper_freq": 4200,
"min_note_duration": 0.05,
"max_note_duration": 0.5,
"min_velocity": 40,
"max_velocity": 127,
"output_filename": "spray.mid"
},
"sine_tone_generator": {
"frequency": 440.0,
"duration": 5.0,
"amplitude_jitter_amount": 0.3,
"jitter_frequency": 3.0,
"output_filename": "generated_tone.wav"
}
}