Source code for alex.components.tts.base

#!/usr/bin/env python
# coding: utf-8

[docs]class TTSInterface(object): def __init__(self, cfg): self.cfg = cfg
[docs] def synthesize(self, text): raise NotImplementedError("TTS")