This repository was archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeech_events.py
83 lines (69 loc) · 3.17 KB
/
speech_events.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
from android import mActivity, api_version
from android.runnable import run_on_ui_thread
from jnius import autoclass, cast, PythonJavaClass, java_method
String = autoclass('java.lang.String')
Toast = autoclass('android.widget.Toast')
Intent = autoclass('android.content.Intent')
Context = autoclass('android.content.Context')
ClipboardManager = autoclass('android.content.ClipboardManager')
ClipData = autoclass('android.content.ClipData')
SpeechRecognizer = autoclass('android.speech.SpeechRecognizer')
RecognizerIntent = autoclass('android.speech.RecognizerIntent')
# requires 'android.add_src = java' and the 'java/org/kivy.....' source code.
KivyRecognitionListener = autoclass('org.kivy.speech.KivyRecognitionListener')
class SpeechEvents:
def __init__(self):
self.speechRecognizer = None
# create_recognizer() must be on Android main thread,
# others are on the main thread to prevent any multi-threading issues
@run_on_ui_thread
def create_recognizer(self, recognizer_event_handler):
self.speechRecognizer = \
SpeechRecognizer.createSpeechRecognizer(mActivity)
self.callback_wrapper = CallbackWrapper(recognizer_event_handler)
self.speechRecognizer.setRecognitionListener(
KivyRecognitionListener(self.callback_wrapper)) # Java
@run_on_ui_thread
def destroy_recognizer(self):
if self.speechRecognizer:
self.speechRecognizer.destroy()
self.speechRecognizer = None
@run_on_ui_thread
def start_listening(self):
if self.speechRecognizer:
self.speechRecognizerIntent = Intent(
RecognizerIntent.ACTION_RECOGNIZE_SPEECH)
self.speechRecognizerIntent.putExtra(
RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_FREE_FORM)
self.speechRecognizerIntent.putExtra(
RecognizerIntent.EXTRA_PARTIAL_RESULTS, True)
self.speechRecognizer.startListening(self.speechRecognizerIntent)
@run_on_ui_thread
def stop_listening(self):
if self.speechRecognizer:
self.speechRecognizer.stopListening()
# This is not related to speech.
# It is here to keep all the Android api calls in one place.
def share_text_with_clipboard(self, text):
clipboard = cast(ClipboardManager,
mActivity.getSystemService(Context.CLIPBOARD_SERVICE))
clip = ClipData.newPlainText('speech text', text)
clipboard.setPrimaryClip(clip)
if api_version < 33:
self.make_toast()
# Toast requires that it is on the Android main thread.
@run_on_ui_thread
def make_toast(self):
Toast.makeText(mActivity, String('Copied to Clipboard.'),
Toast.LENGTH_LONG).show()
class CallbackWrapper(PythonJavaClass):
__javacontext__ = 'app'
__javainterfaces__ = ['org/kivy/speech/CallbackWrapper']
def __init__(self, callback):
super().__init__()
self.callback = callback
@java_method('(Ljava/lang/String;Ljava/lang/String;)V')
def callback_data(self, key, value):
if self.callback:
self.callback(key, value)