Testing with Postman
The easiest way to test the Whisper Transcriber Service is with Postman.
Start Postman and create a new HTTP request.
- Create a new HTTP request
- Select
POST
- Enter the endpoint of your flask server. Eg,
http://<HOST ADDRESS>:5500/transcribe
- Select
Body
, then selectbinary
- Select the audio file you wish to transcribe
- Select
Send
The audio file will be transcribed and when complete, will return a JSON document with the transcription. Here's an example of a transcription that was a mix of English questions with Tagalog replies.
{
"transcription": " Hi, so how was the gym today? Mabuti. Madaming tao. So what did you do? Ginamit ko yung treadmill. Did you do any stretching? Hindi. Not today? Hindi ngayong araw."
}