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

arpabet_types

Types for the arpabet crate. Do not use directly.

1 stable release

2.0.0 Oct 13, 2020

#5 in #cmudict

Download history 133/week @ 2024-02-05 8/week @ 2024-02-12 54/week @ 2024-02-19 15/week @ 2024-02-26 7/week @ 2024-03-04 23/week @ 2024-03-11 13/week @ 2024-03-18

87 downloads per month
Used in 4 crates (3 directly)

BSD-4-Clause

65KB
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 the core types for the arpabet crate. This crate is split into sub-crates to aid in compile-time loading of the CMUdict.

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

Dependencies

~4–5MB
~100K SLoC