-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert.py
executable file
·71 lines (63 loc) · 1.95 KB
/
convert.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
#!/usr/local/bin/python
# -*- encoding:utf-8 -*-
import sys
import numpy
import os.path
import time
from converter import saveload
from converter import fft
from vocaloid import scale
from vocaloid import vsqx_lib
from vocaloid import net_vocaloid_request_lib
WIN_SIZE = 1024
SAMPLING_RATE = 44100
def get_notes(raw_data,scale):
print "get_notes"
spectrums = fft.get_max_spectrums(raw_data,WIN_SIZE)
freqs = fft.get_max_freqs(spectrums,WIN_SIZE)
# print spectrums
notes = []
length = 1
prev_note = scale.convert(0)
pos_tick = 1
for (i,spectrum) in enumerate(freqs):
note = scale.convert(spectrum)
if prev_note == note :
length = length + 1
else:
dur_tick = scale.calcTick(length * 0.25)
notes.append(vsqx_lib.VsqxLib.createNote(pos_tick,dur_tick,prev_note))
pos_tick = pos_tick + int(dur_tick)
length = 1
prev_note = note
print len(note),"note length"
return notes
def create_note_xml(notes,note_xml_name):
notes_xml = vsqx_lib.VsqxLib.createVsqx(notes)
f = open(note_xml_name, 'w')
f.write(notes_xml)
f.close()
def download_music(note_xml_name,output_name):
id = net_vocaloid_request_lib.NetVocaloidRequestLib.startCreateVocal(note_xml_name)
while (net_vocaloid_request_lib.NetVocaloidRequestLib.isDoneCreateVocal(id) is False):
print 'createing'
time.sleep(3)
net_vocaloid_request_lib.NetVocaloidRequestLib.downloadVocalFile(id, output_name)
def main():
input_name = sys.argv[1]
input_path,ext = os.path.splitext(input_name)
note_xml_name = input_path + ".xml"
output_name = sys.argv[2]
scale_converter = scale.InocentScale()
if len(sys.argv) > 4:
if sys.argv[3] == "happy":
scale_converter = scale.CMajorScale()
elif sys.argv[3] == "sad":
scale_converter = scale.AminorScale()
raw_data = saveload.load(input_name)
notes = get_notes(raw_data,scale_converter)
create_note_xml(notes,note_xml_name)
download_music(note_xml_name,output_name)
# saveload.save(output_name,raw_data)
if __name__ == '__main__':
main()