Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

baidu-speech-synthesizer

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

baidu-speech-synthesizer

Play sound from text in browser using Baidu TTS Service

  • 0.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

baidu-speech-synthesizer

NPM version Build Status Downloads License

Play sound from text in browser using Baidu TTS Service

Usage

import BDSSpeechSynthesizer from 'baidu-speech-synthesizer'

let bss = new BDSSpeechSynthesizer()
let speaker = bss.speak('hello world')

speaker.on('ended', () => bss.speak('bye world'))

Quick Start

<script src="https://unpkg.com/baidu-speech-synthesizer@latest/dist/index.min.js"></script>

<script>
var bss = new BDSSpeechSynthesizer();
bss.speak('hello world');
</script>

API

new BDSSpeechSynthesizer()

Creates a new BDSSpeechSynthesizer instance.

.speak(text[, speechOptions[, playerOptions]])

Play the sound of text, return the speaker.

  • text: String text to be speak.
  • speechOptions: Object optional Speech synthesizer Config.
  • playerOptions: Object optional Player Config.
    • autoplay: boolean Play the sound right now, Defaults true.

.stop()

Stop the player of this instance.

Keywords

FAQs

Package last updated on 07 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc