diff --git a/whispercpp.pyx b/whispercpp.pyx index a231d96..1e3512c 100644 --- a/whispercpp.pyx +++ b/whispercpp.pyx @@ -100,7 +100,9 @@ cdef class Whisper: whisper_free(self.ctx) def transcribe(self, filename=TEST_FILE): + print("Loading data..") cdef audio_data data = load_audio(filename) + print("Transcribing..") return whisper_full(self.ctx, self.params, data.frames, data.n_frames) def extract_text(self, int res):