Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class TextToSpeech:
  2. CHUNK = 1024
  3.  
  4. def __init__(self, words_pron_dict:str = 'cmudict-0.7b.txt'):
  5. self._l = {}
  6. self._load_words(words_pron_dict)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement