mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2026-08-01 16:04:29 +00:00
音乐合成插件:采样率参数名称精确化
This commit is contained in:
@@ -74,7 +74,7 @@ class PcmConversionConfig(PluginConfig):
|
|||||||
"""
|
"""
|
||||||
没看懂这个参数的意思
|
没看懂这个参数的意思
|
||||||
"""
|
"""
|
||||||
sample_rate: int = 44100
|
target_sample_rate: int = 44100
|
||||||
"""
|
"""
|
||||||
目标输出的采样率
|
目标输出的采样率
|
||||||
"""
|
"""
|
||||||
@@ -122,7 +122,7 @@ class NoteDataConvert2PcmPlugin(MusicOutputPluginBase):
|
|||||||
resource_folder=config.assets_path,
|
resource_folder=config.assets_path,
|
||||||
synthesis_mode=config.synthesis_mode,
|
synthesis_mode=config.synthesis_mode,
|
||||||
overlay_mode=config.overlay_mode,
|
overlay_mode=config.overlay_mode,
|
||||||
sample_rate=config.sample_rate,
|
target_sample_rate=config.target_sample_rate,
|
||||||
value_get_method=config.value_get_method,
|
value_get_method=config.value_get_method,
|
||||||
pitch_accuracy_decimals=config.pitch_accuracy_decimals,
|
pitch_accuracy_decimals=config.pitch_accuracy_decimals,
|
||||||
music_volume=config.global_volume,
|
music_volume=config.global_volume,
|
||||||
@@ -141,7 +141,7 @@ class NoteDataConvert2PcmPlugin(MusicOutputPluginBase):
|
|||||||
resource_folder=config.assets_path,
|
resource_folder=config.assets_path,
|
||||||
synthesis_mode=config.synthesis_mode,
|
synthesis_mode=config.synthesis_mode,
|
||||||
overlay_mode=config.overlay_mode,
|
overlay_mode=config.overlay_mode,
|
||||||
sample_rate=config.sample_rate,
|
target_sample_rate=config.target_sample_rate,
|
||||||
value_get_method=config.value_get_method,
|
value_get_method=config.value_get_method,
|
||||||
pitch_accuracy_decimals=config.pitch_accuracy_decimals,
|
pitch_accuracy_decimals=config.pitch_accuracy_decimals,
|
||||||
music_volume=config.global_volume,
|
music_volume=config.global_volume,
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ class MusicPreview:
|
|||||||
resource_folder: Path,
|
resource_folder: Path,
|
||||||
synthesis_mode: Literal[0, 1, 2, 3, 4] = 1,
|
synthesis_mode: Literal[0, 1, 2, 3, 4] = 1,
|
||||||
overlay_mode: Literal[1, 2] = 1,
|
overlay_mode: Literal[1, 2] = 1,
|
||||||
sample_rate: int = 44100,
|
target_sample_rate: int = 44100,
|
||||||
value_get_method: Literal[0, 1] = 1,
|
value_get_method: Literal[0, 1] = 1,
|
||||||
pitch_accuracy_decimals: int = 0,
|
pitch_accuracy_decimals: int = 0,
|
||||||
music_volume: float = 1,
|
music_volume: float = 1,
|
||||||
@@ -100,7 +100,7 @@ class MusicPreview:
|
|||||||
|
|
||||||
self.mode = synthesis_mode
|
self.mode = synthesis_mode
|
||||||
self.overlay_mode_c = overlay_mode
|
self.overlay_mode_c = overlay_mode
|
||||||
self.output_sample_rate = sample_rate
|
self.output_sample_rate = target_sample_rate
|
||||||
self.get_value_method = value_get_method
|
self.get_value_method = value_get_method
|
||||||
self.resources_path = resource_folder
|
self.resources_path = resource_folder
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user