make stereo default

This commit is contained in:
Concedo 2026-03-12 00:10:25 +08:00
parent 211d4fe632
commit 3cc6e2ea17
3 changed files with 4 additions and 4 deletions

View file

@ -2507,7 +2507,7 @@ def music_generate_audio(genparams):
input_json = json.dumps(genparams)
inputs = music_generation_inputs()
inputs.is_planner_mode = False
inputs.stereo = genparams.get('stereo', False)
inputs.stereo = genparams.get('stereo', True)
inputs.gen_codes = genparams.get('gen_codes', False)
inputs.rewrite_caption = genparams.get('rewrite_caption', True)
inputs.input_json = input_json.encode("UTF-8")