csv-to-ssml v0.0.1
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.
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 sampleFor 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 thereSince 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, 1AUDIO
This is a reference to a link. It will embed an audio file into a SSML sequence.
AUDIO, https://samples.co/example.mp4PROSODY
This will set the rate of the voice dictation.
PROSODY, slowLANGUAGE
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-US7 years ago