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

https://github.com/ganlvtech/bing-stt

Rust implementation of bing "Search using voice" button speech recognition API (similar to Azure real-time speech to text API)
https://github.com/ganlvtech/bing-stt

speech-recognition speech-to-text streaming-api stt voice-activity-detection

Last synced: 9 months ago
JSON representation

Rust implementation of bing "Search using voice" button speech recognition API (similar to Azure real-time speech to text API)

Awesome Lists containing this project

README

          

# bing-stt

Speech to Text API on bing.com

API Endpoint: wss://sr.bing.com/opaluqu/speech/recognition/interactive/cognitiveservices/v1

Docs: https://learn.microsoft.com/en-us/azure/ai-services/speech-service/get-speech-recognition-results?pivots=programming-language-csharp#speech-synchronization

## Usage

```bash
cargo add bing-stt --git https://github.com/ganlvtech/bing-stt.git
```

or

```toml
[dependencies]
bing-stt = { git = "https://github.com/ganlvtech/bing-stt.git", version = "0.1.0" }
```

## Examples

```bash
cd examples/windows-microphone-speech-recognition/
cargo run
```

## Related Projects

[edge-tts](https://github.com/ganlvtech/edge-tts)

## License

[MIT License](https://mit-license.org/)