Chunking long audio files #206
Answered
by
ggerganov
NickDarvey
asked this question in
Q&A
-
I'm wanting to process long audio files* in a memory-constrained environment (i.e. my shitty laptop). If I understand correctly,
Does this mean I can just take 30 second chunks of my file and call [1] A ~3 hour audio file meant I needed to allocated ~500MB array of float32 (PCM frames) to pass to |
Beta Was this translation helpful? Give feedback.
Answered by
ggerganov
Dec 1, 2022
Replies: 1 comment 5 replies
-
Yes, this is correct. As long as you keep the same |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
NickDarvey
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, this is correct. As long as you keep the same
whisper_context
alive, it should work as you expect.