fix: add audio padding for Moonshine models to prevent empty transcri…#1292
Open
sudhanshu112233shukla wants to merge 1 commit intoEpicenterHQ:mainfrom
Open
Conversation
Author
|
@braden-w do check this solution and tell me if it needs any update i will fix it |
…ptions Moonshine models (especially tiny) require minimum audio length (~1.5s) to generate transcriptions. Short audio clips result in empty output due to insufficient context for the model. This fix pads short audio with silence to meet the 1.5s threshold, ensuring reliable transcription while preserving original audio quality. - Added MIN_MOONSHINE_SAMPLES constant (24000 samples = 1.5s at 16kHz) - Implemented padding logic with debug logging - Preserves original audio, adds only trailing silence - Applies to both tiny and base model variants Fixes EpicenterHQ#1282
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Moonshine Tiny model returns empty transcriptions for short audio clips (#1282)
Solution
Added automatic audio padding for clips < 1.5 seconds to meet Moonshine's minimum context requirement.
Changes
apps/whispering/src-tauri/src/transcription/mod.rsTesting Needed
macOS/Linux testing required (Moonshine not available on Windows)
Fixes #1282