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)
- Host: GitHub
- URL: https://github.com/ganlvtech/bing-stt
- Owner: ganlvtech
- License: mit
- Created: 2025-01-12T21:40:59.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-16T18:44:59.000Z (12 months ago)
- Last Synced: 2025-02-16T19:31:59.624Z (12 months ago)
- Topics: speech-recognition, speech-to-text, streaming-api, stt, voice-activity-detection
- Language: Rust
- Homepage:
- Size: 17.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)