-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmidi_utils.py
55 lines (36 loc) · 1.48 KB
/
midi_utils.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
from collections import defaultdict
from mido import MidiFile
from pydub import AudioSegment
from pydub.generators import Sine
def note_to_freq(note, concert_A=440.0):
'''
from wikipedia: http://en.wikipedia.org/wiki/MIDI_Tuning_Standard#Frequency_values
'''
return (2.0 ** ((note - 69) / 12.0)) * concert_A
def ticks_to_ms(ticks):
tick_ms = (60000.0 / tempo) / mid.ticks_per_beat
return ticks * tick_ms
# mid = MidiFile("./maroon_5-animals.mid")
mid = MidiFile(r"E:\Datasets\maestro-v3.0.0-midi\maestro-v3.0.0\2011\MIDI-Unprocessed_01_R1_2011_MID--AUDIO_R1-D1_02_Track02_wav.midi")
output = AudioSegment.silent(mid.length * 1000.0)
tempo = 100 # bpm
for track in mid.tracks:
# position of rendering in ms
current_pos = 0.0
current_notes = defaultdict(dict)
# current_notes = {
# channel: {
# note: (start_time, message)
# }
# }
for msg in track:
current_pos += ticks_to_ms(msg.time)
if msg.type == 'note_on':
current_notes[msg.channel][msg.note] = (current_pos, msg)
if msg.type == 'note_off':
start_pos, start_msg = current_notes[msg.channel].pop(msg.note)
duration = current_pos - start_pos
signal_generator = Sine(note_to_freq(msg.note))
rendered = signal_generator.to_audio_segment(duration=duration - 50, volume=-20).fade_out(100).fade_in(30)
output = output.overlay(rendered, start_pos)
output.export("piano.wav", format="wav")