-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathREADME
More file actions
47 lines (35 loc) · 2.19 KB
/
README
File metadata and controls
47 lines (35 loc) · 2.19 KB
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
JSTK - The Java Speech Toolkit
The Java Speech Tooklit (JSTK) is developed and maintained by the Speech Group
at the University of Erlangen-Nuremberg. It is designed to provide both API and
applications for the most popular speech tasks such as speech recognition,
speaker verification, speech transcription and annotation and evaluation of
human rater tasks. The current maintainers of the toolkit can be reached at
jstk@speech.informatik.uni-erlangen.de
The JSTK is licensed under GPLv3 and welcomes any contributions in terms of
extensions, bugfixes, feature requests or comments. Note that code maintenance
is (for now) only done at the speech group of Univ. Erlangen. Though this
toolkit is intended to allow full-scale speech applications, special APIs such
as the Google Android Speech API or Java Speech API are not implemented (but may
however be implemented in the future).
The toolkit makes use of the following third party libraries:
JTransforms - http://sites.google.com/site/piotrwendykier/software/jtransforms
JTransforms provides (discrete) signal processing routines such as FFT, DHT,
and DCT. It relies on state-of-the-art algorithms and even allows multi-
threading.
JAMA - http://math.nist.gov/javanumerics/jama/
The JAMA package provides linear algebra routines such as decompositions
(e.g. Eigen, LR, QR) and matrix operations (calculus, inversions).
A single precision copy is maintained at the Speech Group named FJAMA, and
a snapshot can be found in the download section of this project.
log4j - http://logging.apache.org/log4j
log4j provides scalable logging capabilities, however, JSTK only uses the
very basic features of it -- for now. Currently, we use v 1.2.16
jspeex - http://sourceforge.net/projects/jspeex/files/jspeex
jspeex is used for decoding speex-compressed (*.spx) files. speex is a lossy
codec comparable to MP3 or Ogg Vorbis, but optimized for speech, see http://www.speex.org.
Currently using version 0.9.7.
(under debian just do "aptitude install libjspeex-java")
junit - http://www.junit.org
Testing framework for java. currently used only sporadically.
Currently using version 4.
sikoried, 3Feb2011