Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wwdok
/
faster-whisper-webui-cn
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e031d2f
faster-whisper-webui-cn
/
src
/
hooks
/
progressListener.py
wwdok
add text postprocess tab
51bea4b
over 1 year ago
raw
Copy download link
history
blame
Safe
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