ArticPolar.Dev.TTS 1.0.0

dotnet add package ArticPolar.Dev.TTS --version 1.0.0
NuGet\Install-Package ArticPolar.Dev.TTS -Version 1.0.0
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="ArticPolar.Dev.TTS" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ArticPolar.Dev.TTS --version 1.0.0
#r "nuget: ArticPolar.Dev.TTS, 1.0.0"
#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 ArticPolar.Dev.TTS as a Cake Addin
#addin nuget:?package=ArticPolar.Dev.TTS&version=1.0.0

// Install ArticPolar.Dev.TTS as a Cake Tool
#tool nuget:?package=ArticPolar.Dev.TTS&version=1.0.0

ArticPolar.Dev.TTS

Text to Speech using C# (NET Framework 4.7.1)

Example

using ArticPolar.Dev.TTS;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace TTSConsole
{
    internal class Program
    {
        static void Main(string[] args)
        {
            using (var tts = new TTS())
            {
                tts.SetVoice("Microsoft Maria Desktop - Portuguese (Brazil)");
                tts.SetRate(0); // Normal rate
                tts.SetVolume(100); // Max volume

                tts.Speak("Olá, este é um exemplo de conversão de texto em fala.");
                tts.Speak("Você pode controlar vários aspectos da síntese de fala com esta classe.");

                Console.WriteLine("Press Enter to exit...");
                Console.ReadLine();
            }
        }
    }
}

Product Compatible and additional computed target framework versions.
.NET Framework net471 is compatible.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.7.1

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 128 9/17/2023

First Version