File size: 481 Bytes
808773a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class PlayDiffusion:
    def __init__(self):
        print("PlayDiffusion initialized")

    def inpaint(self, inpaint_input):
        print("Running inpaint with:", inpaint_input.__dict__)
        return "dummy_inpaint_output.wav"

    def tts(self, tts_input):
        print("Running TTS with:", tts_input.__dict__)
        return "dummy_tts_output.wav"

    def rvc(self, rvc_input):
        print("Running RVC with:", rvc_input.__dict__)
        return "dummy_rvc_output.wav"