Skip to content
This repository has been archived by the owner on Feb 24, 2023. It is now read-only.

taeukkang/clova-speech

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DEPRECATED

The Clova Speech Synthesis service provided by Naver Developers Open API has shut down and is unavailable to access since July 2, 2018. Thus, this project will stop development. Please read this notice from Naver Developers.

clova-speech

The Clova Speech Synthesis API for Node.js

Installation

$ npm install --save clova-speech

Usage

You'll need to register your app with Naver first. Get your client ID and secret, and make sure to keep it secret!

const ClovaSpeech = require('clova-speech');
const clova = new ClovaSpeech("CLIENT_ID", "CLIENT_SECRET");

clova.fetch("안녕하세요!");

API

new ClovaSpeechSynthesis(client_id, client_secret)

Creates an instantce of CSS (ClovaSpeechSynthesis).

client_id

Type: string Accepts CSS client ID.

client_secret

Type: string Accepts CSS client secret.

.fetch(text, [speaker], [speed])

text

Type: string Text to synthesize. Max 5000 characters allowed. Use .\n to separate sentences and , to pause.

speaker

Type: string A voice to synthesize text. Default is mijin. Find out available speakers here.

speed

Type: integer Speed of voice playback. Integer must be between -5 to 5. -5 is 0.5 faster, and 5 is 0.5 slower. 0 is normal speed.

License

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published