-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_TestSP.py
39 lines (34 loc) · 1.17 KB
/
_TestSP.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
from wai.common.cli.options import TypedOption
from wai.annotations.core.component import ProcessorComponent
from wai.annotations.core.stream import ThenFunction, DoneFunction
from wai.annotations.core.stream.util import RequiresNoFinalisation
from wai.annotations.domain.audio.speech import SpeechInstance
OUTPUT_FILENAME = "filename"
OUTPUT_TRANSCRIPT = "transcript"
OUTPUTS = [
OUTPUT_FILENAME,
OUTPUT_TRANSCRIPT,
]
class TestSP(
RequiresNoFinalisation,
ProcessorComponent[SpeechInstance, SpeechInstance]
):
output: str = TypedOption(
"--output",
type=str,
default=OUTPUT_FILENAME,
help="the information to output: %s" % "|".join(OUTPUTS)
)
def process_element(
self,
element: SpeechInstance,
then: ThenFunction[SpeechInstance],
done: DoneFunction
):
if self.output == OUTPUT_FILENAME:
self.logger.info(element.data.filename)
elif self.output == OUTPUT_TRANSCRIPT:
self.logger.info(element.annotations.text)
else:
raise Exception("Unknown output type (%s): %s" % ("|".join(OUTPUTS), self.output))
then(element)