mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2024-11-11 01:27:35 +08:00
19 lines
621 B
Python
19 lines
621 B
Python
# THIS PROGRAM IS ONLY A TEST EXAMPLE
|
||
|
||
|
||
from msctPkgver.main import *
|
||
|
||
convertion = midiConvert()
|
||
convertion.convert(input('请输入midi文件路径:'), input('请输入输出路径:'))
|
||
for i in convertion.toBDXfile(
|
||
1,
|
||
input('请输入作者:'),
|
||
bool(int(input('是否开启进度条(1|0):'))),
|
||
int(input('请输入指令结构最大生成高度:')),
|
||
input('请输入计分板名称:'),
|
||
float(input('请输入音量(0-1]:')),
|
||
float(input('请输入速度倍率:')),
|
||
bool(int(input('是否自动重置计分板(1|0):'))),
|
||
):
|
||
print(i)
|