faster-whisper-webui-cn / src /hooks /progressListener.py
wwdok's picture
add text postprocess tab
51bea4b
raw
history blame contribute delete
198 Bytes
from typing import Union
class ProgressListener:
def on_progress(self, current: Union[int, float], total: Union[int, float]):
self.total = total
def on_finished(self):
pass