Views
No views yet
1try (SileroVAD vad = SileroVAD.fromPretrained("models/silero-vad")) {
2 List<VoiceSegment> segments = vad.detect(Path.of("meeting.wav"));
3 for (VoiceSegment segment : segments) {
4 System.out.printf("Speech: %.2fs - %.2fs%n", segment.start(), segment.end());
5 }
6}| Property | Value |
|---|---|
| Architecture | Silero VAD (lightweight CNN + LSTM) |
| Task | Voice activity detection |
| Input | 16kHz mono audio (float32 waveform, 512-sample chunks) |
| Output | Speech probability per chunk |
| Model size | ~2 MB |
| Original source | snakers4/silero-vad |