DuroCuri

Results 2 issues of DuroCuri

![image](https://github.com/storyicon/comfyui_segment_anything/assets/118010803/3b8c640b-ed43-4559-8e69-654e8ff7ddfc) ![image](https://github.com/storyicon/comfyui_segment_anything/assets/118010803/85246f94-b3cb-4d33-8b6e-5e10e37140f9) In my workflow, it can not work because it can not inpainting two mask. In sd-webui, if I input two words, it can give me a whole mask...

import os import torch from openvoice import se_extractor from openvoice.api import BaseSpeakerTTS, ToneColorConverter # 选择底模 ckpt_base = 'D:/voice/OpenVoice/openvoice/checkpoints/base_speakers/ZH' ckpt_converter = 'D:/voice/OpenVoice/openvoice/checkpoints/converter' device="cuda:0" if torch.cuda.is_available() else "cpu" output_dir = 'D:/voice/OpenVoice/openvoice/output' base_speaker_tts...