VoiceTextWebAPI.Client 2.0.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package VoiceTextWebAPI.Client --version 2.0.0.1
NuGet\Install-Package VoiceTextWebAPI.Client -Version 2.0.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="VoiceTextWebAPI.Client" Version="2.0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add VoiceTextWebAPI.Client --version 2.0.0.1
#r "nuget: VoiceTextWebAPI.Client, 2.0.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install VoiceTextWebAPI.Client as a Cake Addin
#addin nuget:?package=VoiceTextWebAPI.Client&version=2.0.0.1

// Install VoiceTextWebAPI.Client as a Cake Tool
#tool nuget:?package=VoiceTextWebAPI.Client&version=2.0.0.1

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.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.5

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on VoiceTextWebAPI.Client:

Repository Stars
anoyetta/ACT.Hojoring
Advanced Combat Tracker の FFXIV向けプラグインです。トリガ、TTSの拡張、HUDの拡張など。
chomado/GoogleHomeHack
Google Home 買ったので、マッチョな男の人に喋らせました。(C#, Azure Functions)
Version Downloads Last updated
3.0.0.1 1,406 3/19/2019
2.0.0.1 1,154 3/15/2018
2.0.0 1,249 3/15/2018
1.4.0 1,044 3/15/2018
1.3.0.1 1,416 4/12/2015
1.2.0-beta 923 10/18/2014
1.1.0-beta 1,133 9/4/2014
1.0.0.1-beta 914 9/1/2014
1.0.0-beta 933 9/1/2014

v.2.0.0.1
- support .NET Standard 2.0
v.2.0
- [Breaking Change] Remove aac format.
v.1.4
- Add mp3 format.
v.1.3
- Can chose voice file format from wav/ogg/aac.
v.1.2
- Add speaker "Bear"(Berserk Bear)!
v.1.1
- Add speaker "Santa"(Santa Claus)!
v.1.0
- First release.