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

csv-to-ssml

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-to-ssml

Simple tool to convert a CSV file to SSML. CSV is often more approachable and a lot easier to read.

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

CSV to SSML

Small tool to convert CSV instructions to SSML. CSV is often more approachable and a lot easier to read.

Dependencies

This library only only has one dependency.

  • ssml

Usage

Example
import fs from "fs";
import { toSSML } from "csv-to-ssml";

fs.readFile("./path-to/instructions.csv", "utf8", (err, csv) => {
  const ssml = toSSML(csv);
  console.log(ssml);
  fs.writeFile("./path-to/instructions.ssml", ssml, () => {});
});

toSSML

This is a function that takes a string CSV file, and will output a string SSML file.

CSV Format

The CSV file does need a certain set of instructions to be able to put the proper tags around text and breaks.

TEXT, hi there
BREAK, 0.5
TEXT, this is a sample

For more info on SSML see the spec

TEXT

This is a text node, it currently adds just any text in the table to this.

TEXT, hi there

Since this is a CSV parser any comma are viewed as separators and will be treated as such

BREAK

This is silence between different instructions. The number notation is in seconds and decimal values are allowed.

BREAK, 1
AUDIO

This is a reference to a link. It will embed an audio file into a SSML sequence.

AUDIO, https://samples.co/example.mp4
PROSODY

This will set the rate of the voice dictation.

PROSODY, slow
LANGUAGE

This sets the language of the SSML document.

This will erase any information added to the documents prior so put this notation at the top of your CSV document.

LANGUAGE, en-US

FAQs

Package last updated on 25 Apr 2019

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