-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgetting_melody.py
148 lines (130 loc) · 2.96 KB
/
getting_melody.py
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sat Jan 19 18:45:27 2019
@author: ongrayyi
"""
from __future__ import print_function
import vamp
import librosa
import os
import matplotlib.pyplot as plt
from IPython import get_ipython
import numpy as np
import audiolazy
get_ipython().run_line_magic('matplotlib','inline')
filename = os.path.expanduser("~/Desktop/full_chromatic_2.m4a")
# This is how we load audio using Librosa
audio, sr = librosa.load(filename, sr=44100, mono=True)
data = vamp.collect(audio, sr, "mtg-melodia:melodia")
hop, melody = data['vector']
print(hop)
print(melody)
timestamps = 8 * 128/44100.0 + np.arange(len(melody)) * (128/44100.0)
# A clearer option is to get rid of the negative values before plotting
melody_pos = melody[:]
melody_pos[melody<=0] = None
"""
midi_pitch = hz2midi(melody)
print(midi_pitch)
np.savetxt("midi_pitch.csv", midi_pitch, delimiter = ",")
"""
midi = 69 + 12*np.log2(melody_pos/440.)
midi = np.round(midi)
midi.astype(int)
#np.savetxt("midi_pitch_2.csv", midi, delimiter = ",")
miditonote = {
24 : 'C1',
25 : 'C1#',
26 : 'D1',
27 : 'D1#',
28 : 'E1',
29 : 'F1',
30 : 'F1#',
31 : 'G1',
32 : 'G1#',
33 : 'A1',
34 : 'B1b',
35 : 'B1',
36 : 'C2',
37 : 'C2#',
38 : 'D2',
39 : 'D2#',
40 : 'E2',
41 : 'F2',
42 : 'F2#',
43 : 'G2',
44 : 'G2#',
45 : 'A2',
46 : 'B2b',
47 : 'B2',
48 : 'C3',
49 : 'C3#',
50 : 'D3',
51 : 'D3#',
52 : 'E3',
53 : 'F3',
54 : 'F3#',
55 : 'G3',
56 : 'G3#',
57 : 'A3',
58 : 'B3b',
59 : 'B3',
60 : 'C4',
61 : 'C4#',
62 : 'D4',
63 : 'D4#',
64 : 'E4',
65 : 'F4',
66 : 'F4#',
67 : 'G4',
68 : 'G4#',
69 : 'A4',
70 : 'B4b',
71 : 'B4',
72 : 'C5',
73 : 'C5#',
74 : 'D5',
75 : 'D5#',
76 : 'E5',
77 : 'F5',
78 : 'F5#',
79 : 'G5',
80 : 'G5#',
81 : 'A5',
82 : 'B5b',
83 : 'B5',
84 : 'C6',
85 : 'C6#',
86 : 'D6',
87 : 'D6#',
88 : 'E6',
89 : 'F6',
90 : 'F6#',
91 : 'G6',
92 : 'G6#',
93 : 'A6',
94 : 'B6b',
95 : 'B6',
96 : 'C7',
97 : 'C7#',
98 : 'D7',
99 : 'D7#',
100 : 'E7',
101 : 'F7',
102 : 'F7#',
103 : 'G7',
104 : 'G7#',
105 : 'A7',
106 : 'B7b',
107 : 'B7',
}
newlist = []
for i in range(len(midi)):
if midi[i] in miditonote:
note1 = miditonote.get(midi[i])
newlist.append(note1)
else:
newlist.append('None')
newarray = np.asarray(newlist)
np.savetxt("full_chromatic_notes.csv", newarray, delimiter = ",", fmt="%s")