speech2text-fa/README.md

15 lines
307 B
Markdown

# Persian Speech-to-text
## Testing
### With `curl`
```sh
curl -X POST "http://localhost:8000/transcribe" -H "accept: application/json" -H "Content-Type: multipart/form-data" -F "audio_file=@sample.wav"
```
### With `HTTPie`
```sh
http -f POST http://localhost:8000/transcribe audio_file@sample.wav
```