完整的全景声相支持,修复了之前音量大小确定错误的问题

This commit is contained in:
EillesWan
2025-06-19 02:30:24 +08:00
parent 45e9adbbd1
commit 321f80540c
11 changed files with 654 additions and 251 deletions

View File

@@ -34,9 +34,22 @@ z = "z"
z
"""
MIDI_PROGRAM = "program"
"""Midi乐器编号"""
MIDI_VOLUME = "volume"
"""Midi通道音量"""
MIDI_PAN = "pan"
"""Midi通道立体声场偏移"""
# Midi用对照表
MIDI_DEFAULT_VOLUME_VALUE: int = (
64 # Midi默认音量当用户未指定时默认使用折中默认音量
)
MIDI_DEFAULT_PROGRAM_VALUE: int = (
74 # 当 Midi 本身与用户皆未指定音色时,默认 Flute 长笛
)