7 releases

0.2.0 Dec 16, 2024
0.1.0 Nov 23, 2023
0.0.5 Oct 29, 2023

#2049 in Web programming

Download history 10/week @ 2024-09-16 14/week @ 2024-09-23 13/week @ 2024-09-30 12/week @ 2024-10-07 2/week @ 2024-10-14 1/week @ 2024-10-21 7/week @ 2024-11-25 16/week @ 2024-12-02 19/week @ 2024-12-09 146/week @ 2024-12-16

188 downloads per month
Used in 3 crates

Apache-2.0

99KB
2.5K SLoC

ssml-rs

A Rust library for writing SSML.

Currently, ssml-rs focuses on supporting the subsets of SSML supported by major cloud text-to-speech services (Microsoft Azure Cognitive Speech Services, Google Cloud Text-to-Speech, & Amazon Polly) & pyke Songbird.

let doc = ssml::speak(Some("en-US"), ["Hello, world!"]);

use ssml::Serialize;
let str = doc.serialize_to_string(&ssml::SerializeOptions::default().flavor(Flavor::AmazonPolly))?;
assert_eq!(
	str,
	r#"<speak xml:lang="en-US">Hello, world!</speak>"#
);

lib.rs:

Utilities for writing SSML documents.

The root document in SSML is Speak. Use [speak()] to quickly create a document.

let doc = ssml::speak(Some("en-US"), ["Hello, world!"]);

Use Serialize to convert SSML elements to their string XML representation, which can then be sent to your speech synthesis service of chocie.

use ssml::Serialize;
let str = doc.serialize_to_string(&ssml::SerializeOptions::default().pretty())?;
assert_eq!(
	str,
	r#"<speak version="1.0" xmlns="http://www.w3.org/2001/10/synthesis" xml:lang="en-US">
	Hello, world!
</speak>"#
);

Dependencies

~160KB