#speech #text #cmudict #tts #cmu #speech-synthesis

arpabet_cmudict

Parser for the arpabet crate. Do not use directly.

1 stable release

Uses old Rust 2015

2.0.0 Oct 13, 2020

#6 in #cmudict

Download history 124/week @ 2024-02-04 20/week @ 2024-02-18 34/week @ 2024-02-25 1/week @ 2024-03-03 8/week @ 2024-03-10

63 downloads per month
Used in 2 crates (via arpabet)

BSD-4-Clause

1MB
1.5K SLoC

Arpabet.rs

Arpabet (A1 R P AH0 B EH2 T), a library for speech synthesis that leverages Carnegie Mellon University's CMUdict.

Usage

let arpabet = Arpabet::load_cmudict();

assert_eq!(arpabet.get_polyphone_ref("test"),
    Some(&vec!["T".into(), "EH1".into(), "S".into(), "T".into()]));

License

BSD 4-clause

Copyright (c) 2016-2018, Brandon Thomas. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. All advertising materials mentioning features or use of this software must display the following acknowledgement:

    This product includes software developed by Brandon Thomas (bt@brand.io, echelon@gmail.com).

  4. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY COPYRIGHT HOLDER "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


lib.rs:

This crate contains a compile-time allocated CMUdict, which is Carnegie Mellon University's massive dictionary of phoneme-annotated English words.

You shouldn't need to import this crate directly. The arpabet crate includes this transitively.

Dependencies

~4–5MB
~99K SLoC