bd4ff64c-bf9d-42bf-a1a8-4b598e808ed7 23.0.1

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package bd4ff64c-bf9d-42bf-a1a8-4b598e808ed7 --version 23.0.1
NuGet\Install-Package bd4ff64c-bf9d-42bf-a1a8-4b598e808ed7 -Version 23.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="bd4ff64c-bf9d-42bf-a1a8-4b598e808ed7" Version="23.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add bd4ff64c-bf9d-42bf-a1a8-4b598e808ed7 --version 23.0.1
#r "nuget: bd4ff64c-bf9d-42bf-a1a8-4b598e808ed7, 23.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 bd4ff64c-bf9d-42bf-a1a8-4b598e808ed7 as a Cake Addin
#addin nuget:?package=bd4ff64c-bf9d-42bf-a1a8-4b598e808ed7&version=23.0.1

// Install bd4ff64c-bf9d-42bf-a1a8-4b598e808ed7 as a Cake Tool
#tool nuget:?package=bd4ff64c-bf9d-42bf-a1a8-4b598e808ed7&version=23.0.1

Yandex supports classes by Schizo

The library contains a class for playing text with 6 voices and 3 intonations, as well as a class that allows you to asynchronously download and upload files from the cloud.

How to use Yandex.Disk

public void YandeskDisk()
{
    // You should have oauth token from Yandex Passport, see https://tech.yandex.ru/oauth/
    string oauthToken = "<token hear>";

    // Create a disk instance
    Disk MyDisk = new Disk(oauthToken);
    
    // Upload file from local
    Disk.UpLoad(
        diskPath: "SomeFolder/MyDocs/Template.docx",
        localPath: @"C:\%USERPROFILE%\Desktop\Template.docx",
        isOwerwrite: false
    );
    
    // Download file from disk
    Disk.DownLoad(
        diskPath: "SomeFolder/MyDocs/Template.docx", 
        localPath: @"C:\%USERPROFILE%\Desktop\Template.docx"
    );
}

How to use Yandex.Speech

public void YandeskSpeech()
{
    // You should have oauth token from Yandex Passport, see https://tech.yandex.ru/oauth/
    string oauthToken = "<token hear>";

    // Create a speech instance
    Speech MySpeech = new Speech();
    
    // Speech by simple system voice (Is't Yandex.Speech)
    MySpeech.NewSpeech("Some text for speech", 0);
    
    // Speech in any voice and intonation
    MySpeech.NewSpeech(
        oauthToken,
        "Some text for speech",
        Speakers.Jane,
        Emotions.Evil
    );
}

Contributors

License

MIT License

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has 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

Text playback with 6 voices and 3 intonations. Uploading and downloading files from the cloud.