webrtc-speech-to-text icon indicating copy to clipboard operation
webrtc-speech-to-text copied to clipboard

Speech transcription on the browser using WebRTC and Google Speech

Results 3 webrtc-speech-to-text issues
Sort by recently updated
recently updated
newest added

Not sure what's wrong here. ``` panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0xa5ba4a] goroutine 101 [running]: github.com/rviscarra/webrtc-speech-to-text/internal/rtc.(*PionRtcService).handleAudioTrack(0xc0001cad80, 0x24?, 0xc0002640f0) /home/mgk/webrtc-speech-to-text/internal/rtc/pion.go:67...

It says opusfile package not found. Any idea which package to install? This is on Windows Subsystem Linux. ``` go build -o transcribe-server ./cmd/transcribe-server/main.go # pkg-config --cflags -- opus opus...

Thanks for this great sample! Should there be a `return` statement in the 3 error handlers in [this file](https://github.com/rviscarra/webrtc-speech-to-text/blob/master/internal/session/handler.go#L28) ```Go if err != nil { w.WriteHeader(http.StatusInternalServerError) return //like this }...