Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 920 Bytes

README.md

File metadata and controls

39 lines (32 loc) · 920 Bytes

VoiceText WebAPI Client for .NET NuGet Package

This is the clinet librray of HOYA Voice Text Web API for .NET.

Istllation

You can install via nuget.org

PM> Install-Package VoiceTextWebAPI.Client

Usage

using VoiceTextWebAPI.Client;
...
public async void btn_OnClick()
{
  var client = new VoiceTextClient
  {
    APIKey = "{your API key here.}",
    Speaker = Speaker.Haruka,
    Emotion = Emotion.Happiness,
    EmotionLevel = EmotionLevel.High,
    Volume = 50,
    Speed = 120,
    Pitch = 120,
    Format = Format.WAV
  };
  var bytes = await client.GetVoiceAsync("こんにちは。");
  File.WriteAllBytes(".\\result.wav", bytes);
}

License

Copyright (c) 2014-2018 @jsakamoto. Licensed under the MIT license.