From 86fca83bcf7bd1bca35afd7ff5118114fd1b2e4c Mon Sep 17 00:00:00 2001 From: Luke Southam Date: Sun, 18 Dec 2022 21:42:59 +0000 Subject: [PATCH] Update whispercpp.pyx --- whispercpp.pyx | 2 ++ 1 file changed, 2 insertions(+) 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):