-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapture_spectrogram.tscn
More file actions
92 lines (77 loc) · 3.06 KB
/
capture_spectrogram.tscn
File metadata and controls
92 lines (77 loc) · 3.06 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[gd_scene load_steps=6 format=3 uid="uid://bx3yo63ftq8jj"]
[ext_resource type="AudioStream" uid="uid://cfm1net7voei7" path="res://test_audio/sorohanro_-_solo-trumpet-06.hq.ogg" id="1_3q8df"]
[ext_resource type="Script" path="res://capture_spectrogram.gd" id="2_cdmx5"]
[ext_resource type="PackedScene" path="res://audio_level_bar.tscn" id="3_iqgrn"]
[ext_resource type="Gradient" path="res://heatmap.tres" id="4_euyyi"]
[ext_resource type="Gradient" path="res://mfcc_heatmap.tres" id="5_5h2w7"]
[node name="Control" type="Control"]
layout_mode = 3
anchors_preset = 0
offset_right = 1024.01
offset_bottom = 161.584
[node name="PhonemeDetect" type="PanelContainer" parent="."]
layout_mode = 1
anchors_preset = -1
anchor_left = 0.062
anchor_top = 0.012
anchor_right = 0.948
anchor_bottom = 0.687
offset_left = 0.511375
offset_top = 0.060992
offset_right = 3.46332
offset_bottom = -0.00821686
grow_horizontal = 2
size_flags_horizontal = 4
size_flags_vertical = 4
[node name="VBoxContainer" type="VBoxContainer" parent="PhonemeDetect"]
layout_mode = 2
[node name="Label" type="Label" parent="PhonemeDetect/VBoxContainer"]
layout_mode = 2
theme_override_font_sizes/font_size = 40
text = "Voice FFT"
horizontal_alignment = 1
[node name="GridContainer" type="GridContainer" parent="PhonemeDetect/VBoxContainer"]
layout_mode = 2
size_flags_vertical = 3
columns = 4
[node name="Label" type="Label" parent="PhonemeDetect/VBoxContainer/GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
text = "F1 [Hz]"
[node name="Label2" type="Label" parent="PhonemeDetect/VBoxContainer/GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
[node name="Label3" type="Label" parent="PhonemeDetect/VBoxContainer/GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
text = "F2 [Hz]"
[node name="Label4" type="Label" parent="PhonemeDetect/VBoxContainer/GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
[node name="Label5" type="Label" parent="PhonemeDetect/VBoxContainer/GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
text = "F3 [Hz]"
[node name="Label6" type="Label" parent="PhonemeDetect/VBoxContainer/GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
[node name="Label7" type="Label" parent="PhonemeDetect/VBoxContainer/GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
text = "F4 [Hz]"
[node name="Label8" type="Label" parent="PhonemeDetect/VBoxContainer/GridContainer"]
layout_mode = 2
size_flags_horizontal = 3
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="PhonemeDetect" node_paths=PackedStringArray("levels_container", "F1_label", "F2_label", "F3_label", "F4_label")]
stream = ExtResource("1_3q8df")
autoplay = true
bus = &"Record"
script = ExtResource("2_cdmx5")
audio_level_bar_scene = ExtResource("3_iqgrn")
levels_container = NodePath("../VBoxContainer")
heatmap = ExtResource("4_euyyi")
mfcc_heatmap = ExtResource("5_5h2w7")
F1_label = NodePath("../VBoxContainer/GridContainer/Label2")
F2_label = NodePath("../VBoxContainer/GridContainer/Label4")
F3_label = NodePath("../VBoxContainer/GridContainer/Label6")
F4_label = NodePath("../VBoxContainer/GridContainer/Label8")