human/tts/tts_audio_index.py

11 lines
179 B
Python
Raw Normal View History

2024-10-15 00:31:43 +00:00
#encoding = utf8
class TTSAudioIndex:
def __init__(self):
self._index = 0
def get_index(self):
self._index = self._index + 1
return self._index