mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2026-01-14 15:51:52 +00:00
17 lines
485 B
Python
17 lines
485 B
Python
import Musicreater
|
|
import Musicreater.plugin
|
|
import Musicreater.plugin.mcstructfile
|
|
|
|
print(
|
|
Musicreater.plugin.mcstructfile.to_mcstructure_file_in_delay(
|
|
Musicreater.MidiConvert.from_midi_file(
|
|
input("midi路径:"),
|
|
old_exe_format=False,
|
|
# note_table_replacement={"note.harp": "note.flute"},
|
|
),
|
|
input("输出路径:"),
|
|
# Musicreater.plugin.ConvertConfig(input("输出路径:"),),
|
|
# max_height=32,
|
|
)
|
|
)
|