2022-06-07 23:43:14 +08:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
2022-06-08 01:50:14 +08:00
|
|
|
|
|
|
|
|
|
# 音·创 开发交流群 861684859
|
|
|
|
|
# Email EillesWan2006@163.com W-YI_DoctorYI@outlook.com EillesWan@outlook.com
|
|
|
|
|
# 版权所有 金羿("Eilles Wan") & 诸葛亮与八卦阵("bgArray") & 鸣凤鸽子("MingFengPigeon")
|
|
|
|
|
# 若需转载或借鉴 请依照 Apache 2.0 许可证进行许可
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
音·创 库版 MIDI转换展示程序
|
|
|
|
|
Musicreater Package Version : Demo for Midi Conversion
|
|
|
|
|
|
|
|
|
|
Copyright 2022 all the developers of Musicreater
|
|
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the 'License');
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an 'AS IS' BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from msctPkgver.main import *
|
2022-06-07 23:43:14 +08:00
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
convertion = midiConvert()
|
|
|
|
|
|
|
|
|
|
while True:
|
|
|
|
|
midipath = input('请输入midi文件路径:')
|
|
|
|
|
if os.path.exists(midipath):
|
|
|
|
|
break
|
|
|
|
|
else:
|
|
|
|
|
print('文件不存在,请重新输入')
|
|
|
|
|
|
|
|
|
|
outpath = input('请输入输出路径:')
|
|
|
|
|
|
2022-06-07 23:49:04 +08:00
|
|
|
|
if not os.path.exists(outpath):
|
|
|
|
|
os.makedirs(outpath)
|
|
|
|
|
|
2022-06-07 23:43:14 +08:00
|
|
|
|
while True:
|
|
|
|
|
try:
|
|
|
|
|
outFormat = int(input('请输入输出格式(0:mcpack|1:BDX结构):'))
|
|
|
|
|
if outFormat == 0:
|
|
|
|
|
isAutoReset = input('是否自动重置计分板(1|0):')
|
|
|
|
|
if isAutoReset != '':
|
|
|
|
|
isAutoReset = bool(int(isAutoReset))
|
|
|
|
|
isProgress = input('是否开启进度条(1|0):')
|
|
|
|
|
if isProgress != '':
|
|
|
|
|
isProgress = bool(int(isProgress))
|
|
|
|
|
sbname = input('请输入计分板名称:')
|
|
|
|
|
volume = input('请输入音量(0-1):')
|
|
|
|
|
if volume != '':
|
|
|
|
|
volume = float(volume)
|
|
|
|
|
speed = input('请输入速度倍率:')
|
|
|
|
|
if speed != '':
|
|
|
|
|
speed = float(speed)
|
|
|
|
|
elif outFormat == 1:
|
|
|
|
|
author = input('请输入作者:')
|
|
|
|
|
isProgress = input('是否开启进度条(1|0):')
|
|
|
|
|
if isProgress != '':
|
|
|
|
|
isProgress = bool(int(isProgress))
|
|
|
|
|
maxHeight = input('请输入指令结构最大生成高度:')
|
|
|
|
|
if maxHeight != '':
|
|
|
|
|
maxHeight = int(maxHeight)
|
|
|
|
|
sbname = input('请输入计分板名称:')
|
|
|
|
|
volume = input('请输入音量(0-1):')
|
|
|
|
|
if volume != '':
|
|
|
|
|
volume = float(volume)
|
|
|
|
|
speed = input('请输入速度倍率:')
|
|
|
|
|
if speed != '':
|
|
|
|
|
speed = float(speed)
|
|
|
|
|
isAutoReset = input('是否自动重置计分板(1|0):')
|
|
|
|
|
if isAutoReset != '':
|
|
|
|
|
isAutoReset = bool(int(isAutoReset))
|
|
|
|
|
break
|
2022-09-09 14:14:51 +08:00
|
|
|
|
except BaseException:
|
2022-06-07 23:43:14 +08:00
|
|
|
|
print('输入错误,请重新输入')
|
|
|
|
|
|
|
|
|
|
if os.path.isdir(midipath):
|
|
|
|
|
for i in os.listdir(midipath):
|
|
|
|
|
if i.endswith('.mid'):
|
2022-06-07 23:49:04 +08:00
|
|
|
|
print(f'正在操作{i}')
|
2022-09-09 14:14:51 +08:00
|
|
|
|
convertion.convert(midipath + '/' + i, outpath + '/' + i[:-4])
|
2022-06-07 23:43:14 +08:00
|
|
|
|
if outFormat == 0:
|
|
|
|
|
convertion.tomcpack(
|
|
|
|
|
1,
|
2022-06-19 01:07:07 +08:00
|
|
|
|
isAutoReset
|
|
|
|
|
if isAutoReset != ''
|
|
|
|
|
else bool(int(input('是否自动重置计分板(1|0):'))),
|
|
|
|
|
isProgress
|
|
|
|
|
if isProgress != ''
|
|
|
|
|
else bool(int(input('是否开启进度条(1|0):'))),
|
2022-06-07 23:43:14 +08:00
|
|
|
|
sbname if sbname != '' else input('请输入计分板名称:'),
|
|
|
|
|
volume if volume != '' else float(input('请输入音量(0-1):')),
|
|
|
|
|
speed if speed != '' else float(input('请输入速度倍率:')),
|
|
|
|
|
)
|
|
|
|
|
elif outFormat == 1:
|
|
|
|
|
convertion.toBDXfile(
|
|
|
|
|
1,
|
|
|
|
|
author if author != '' else input('请输入作者:'),
|
2022-06-19 01:07:07 +08:00
|
|
|
|
isProgress
|
|
|
|
|
if isProgress != ''
|
|
|
|
|
else bool(int(input('是否开启进度条(1|0):'))),
|
2022-06-07 23:43:14 +08:00
|
|
|
|
maxHeight if maxHeight != '' else int(input('请输入指令结构最大生成高度:')),
|
|
|
|
|
sbname if sbname != '' else input('请输入计分板名称:'),
|
|
|
|
|
volume if volume != '' else float(input('请输入音量(0-1):')),
|
|
|
|
|
speed if speed != '' else float(input('请输入速度倍率:')),
|
2022-06-19 01:07:07 +08:00
|
|
|
|
isAutoReset
|
|
|
|
|
if isAutoReset != ''
|
|
|
|
|
else bool(int(input('是否自动重置计分板(1|0):'))),
|
2022-06-07 23:43:14 +08:00
|
|
|
|
)
|
|
|
|
|
else:
|
|
|
|
|
convertion.convert(midipath, outpath)
|
|
|
|
|
if outFormat == 0:
|
|
|
|
|
convertion.tomcpack(
|
|
|
|
|
1,
|
|
|
|
|
isAutoReset if isAutoReset != '' else bool(int(input('是否自动重置计分板(1|0):'))),
|
|
|
|
|
isProgress if isProgress != '' else bool(int(input('是否开启进度条(1|0):'))),
|
|
|
|
|
sbname if sbname != '' else input('请输入计分板名称:'),
|
|
|
|
|
volume if volume != '' else float(input('请输入音量(0-1):')),
|
|
|
|
|
speed if speed != '' else float(input('请输入速度倍率:')),
|
|
|
|
|
)
|
|
|
|
|
elif outFormat == 1:
|
|
|
|
|
convertion.toBDXfile(
|
|
|
|
|
1,
|
|
|
|
|
author if author != '' else input('请输入作者:'),
|
|
|
|
|
isProgress if isProgress != '' else bool(int(input('是否开启进度条(1|0):'))),
|
|
|
|
|
maxHeight if maxHeight != '' else int(input('请输入指令结构最大生成高度:')),
|
|
|
|
|
sbname if sbname != '' else input('请输入计分板名称:'),
|
|
|
|
|
volume if volume != '' else float(input('请输入音量(0-1):')),
|
|
|
|
|
speed if speed != '' else float(input('请输入速度倍率:')),
|
|
|
|
|
isAutoReset if isAutoReset != '' else bool(int(input('是否自动重置计分板(1|0):'))),
|
2022-06-19 01:07:07 +08:00
|
|
|
|
)
|