Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 353 Bytes

File metadata and controls

26 lines (17 loc) · 353 Bytes

Farsava - ASR Api

First create an API KEY here

install dependencies

dotnet restore

configs

string baseUrl = "https://api.amerandish.com/v1";
string actionUrl = "/speech/asr";
string authKey = "<YOUR_API_KEY>";

string filePath = @"<YOUR_WAV_FILE_PATH>";

run

dotnet run