Merge branch 'master' of github.com:chrys87/fenrir
This commit is contained in:
@ -1,4 +1,8 @@
|
||||
#!/bin/python
|
||||
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
import hashlib
|
||||
import difflib
|
||||
import textwrap
|
||||
|
@ -0,0 +1,22 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
# Espeak driver
|
||||
|
||||
class speech():
|
||||
isInitialized = False
|
||||
|
||||
def __init__(self):
|
||||
try:
|
||||
pass
|
||||
isInitialized = True
|
||||
except:
|
||||
initialized = False
|
||||
|
||||
def speak(text, queueable=True):
|
||||
if queueable == False: self.stop()
|
||||
|
||||
def stop(self):
|
||||
pass
|
||||
|
||||
def clear_buffer(self):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user