exPHAT / SwiftWhisper

🎤 The easiest way to transcribe audio in Swift
MIT License
593 stars 63 forks source link

Is there a possibility to pause and resume transcription? #18

Closed Eriice closed 1 year ago

Eriice commented 1 year ago

One approach that comes to mind is to record the current timestamp and re-truncate the audio for transcription, but that's not very elegant.

exPHAT commented 1 year ago

Unless whisper.cpp adds support for true pausing, that would be outside the scope of this project.

I think your re-truncate approach would be fine. That's how I would do it personally.

Eriice commented 1 year ago

Thanks!