mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2025-06-03 02:45:24 +00:00
34 lines
717 B
Python
34 lines
717 B
Python
import Musicreater.experiment
|
|
import Musicreater.plugin
|
|
import Musicreater.plugin.mcstructfile
|
|
|
|
msct = Musicreater.experiment.FutureMidiConvertKamiRES.from_midi_file(
|
|
input("midi路径:"), old_exe_format=False
|
|
)
|
|
|
|
opt = input("输出路径:")
|
|
|
|
print(
|
|
"乐器使用情况",
|
|
)
|
|
|
|
for name in set(
|
|
sorted(
|
|
[
|
|
n.split(".")[0].replace("c", "").replace("d", "")
|
|
for n in msct.note_count_per_instrument.keys()
|
|
]
|
|
)
|
|
):
|
|
print("\t", name, flush=True)
|
|
|
|
print(
|
|
"\n输出:",
|
|
Musicreater.plugin.mcstructfile.to_mcstructure_file_in_delay(
|
|
msct,
|
|
opt,
|
|
# Musicreater.plugin.ConvertConfig(input("输出路径:"),),
|
|
max_height=32,
|
|
),
|
|
)
|