6 lines
138 B
Python
6 lines
138 B
Python
from pydub import AudioSegment
|
|
|
|
|
|
class BaseSynthesizer:
|
|
def synthesize(self, text) -> AudioSegment:
|
|
raise NotImplementedError
|