An open API service indexing awesome lists of open source software.

https://github.com/akscf/mod_google_asr

Freeswitch ASR module
https://github.com/akscf/mod_google_asr

freeswitch speech-recognition speech-to-text

Last synced: 4 months ago
JSON representation

Freeswitch ASR module

Awesome Lists containing this project

README

          


Google Speech-To-Text service for the Freeswitch.

Features: vad, flexible adjustments.

Available through: asr_interface, commnad api.

A small installation guide can be found here: Fail to compile module

### Usage example
```









```

### mod_quickjs
```javascript
session.ttsEngine= 'google'; // requires: mod_google_tts
session.asrEngine= 'google';

var txt = session.sayAndDetectSpeech('Hello, how can I help you?', 10);
consoleLog('info', "TEXT: " + txt);
```

### Command line
```
freeswitch> google_asr_transcript /tmp/test.wav
+OK: How old is the Brooklyn Bridge
```