Reputation: 93
I am learning Xamarin and I would like to implement the speech to text cognitive service using this url:
I have an error at the line :
// Creates an instance of a speech config with specified subscription key and service region.
// Replace with your own subscription key // and service region (e.g., "westus").
var config = SpeechConfig.FromSubscription("YourSubscriptionKey", "YourServiceRegion");
error : System.DllNotFoundException: Microsoft.CognitiveServices.Speech.core.dll
Thanks
Upvotes: 0
Views: 215
Reputation: 7575
You need to install that library:
https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech/
Install-Package Microsoft.CognitiveServices.Speech -Version 1.6.0
Upvotes: 1