You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
License and capability clarification (2026-07-14): FunASR is a toolkit, not a single checkpoint. The FunASR and SenseVoice repository source code is MIT; model weights follow each model card. SenseVoiceSmall supports Chinese, Cantonese, English, Japanese, and Korean, and its weights use the linked FunASR Model Open Source License Agreement. Fun-ASR-Nano-2512 is Apache-2.0. Language coverage, punctuation, and performance depend on the selected model and runtime configuration.
Feature Request
SoniTranslate handles video dubbing with speech recognition and translation. SenseVoice/Paraformer from FunASR would be a strong ASR engine option.
Why
170x real-time on GPU — non-autoregressive, much faster than Whisper for long video processing
Built-in speaker diarization (cam++) — essential for multi-speaker dubbing
Built-in punctuation — auto-adds punctuation for better subtitle quality
50+ languages with automatic language detection
Chinese/Japanese/Korean accuracy — outperforms Whisper on CJK benchmarks
Quick Integration
fromfunasrimportAutoModelmodel=AutoModel(
model="iic/SenseVoiceSmall",
vad_model="fsmn-vad",
spk_model="cam++",
)
result=model.generate(input="video_audio.wav")
# Returns text with timestamps and speaker labels
Note
License and capability clarification (2026-07-14): FunASR is a toolkit, not a single checkpoint. The FunASR and SenseVoice repository source code is MIT; model weights follow each model card. SenseVoiceSmall supports Chinese, Cantonese, English, Japanese, and Korean, and its weights use the linked FunASR Model Open Source License Agreement. Fun-ASR-Nano-2512 is Apache-2.0. Language coverage, punctuation, and performance depend on the selected model and runtime configuration.
Feature Request
SoniTranslate handles video dubbing with speech recognition and translation. SenseVoice/Paraformer from FunASR would be a strong ASR engine option.
Why
Quick Integration
Happy to help with integration!