• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-2,3261,815

group/H13-Dec-2012-6248

include/H03-May-2022-2,2111,008

m4/H13-Dec-2012-8,1297,282

model/H03-May-2022-335,560335,313

python/H03-May-2022-11,0917,943

src/H03-May-2022-31,46121,098

swig/H13-Dec-2012-390323

test/H03-May-2022-6,3065,428

win32/H13-Dec-2012-839839

AUTHORSH A D28-Sep-2012174 1410

COPYINGH A D28-Sep-20121.7 KiB3635

ChangeLogH A D28-Sep-2012804 2516

INSTALLH A D18-Oct-201215.2 KiB366284

Makefile.amH A D13-Dec-20122.1 KiB6357

Makefile.inH A D03-May-202226.1 KiB826733

NEWSH A D13-Dec-20121.6 KiB5037

READMEH A D28-Sep-20122.5 KiB7752

aclocal.m4H A D12-Dec-201234 KiB958863

autogen.shH A D28-Sep-20124.5 KiB153131

config.guessH A D18-Oct-201243.9 KiB1,5021,291

config.subH A D18-Oct-201233.6 KiB1,7061,558

configureH A D12-Dec-2012402.6 KiB13,89310,866

configure.inH A D12-Dec-20127.2 KiB256235

depcompH A D18-Oct-201218.2 KiB631407

install-shH A D18-Oct-201213.3 KiB521344

ltmain.shH A D18-Oct-2012237.5 KiB8,4076,475

missingH A D18-Oct-201211.2 KiB377281

pocketsphinx.pc.inH A D12-Dec-2012457 1715

pocketsphinx.slnH A D28-Sep-20122.4 KiB3937

README

1PocketSphinx 0.7
2
3This is PocketSphinx, one of Carnegie Mellon University's open source
4large vocabulary, speaker-independent continuous speech recognition
5engine. Please see the LICENSE file for terms of use.
6
7THIS IS A RESEARCH SYSTEM.  This is also an early release of a
8research system.  We know the APIs and function names are likely to
9change, and that several tools need to be made available to make this
10all complete.  With your help and contributions, this can progress in
11response to the needs and patches provided.
12
13To compile:
14
15First, you *must* have SphinxBase, which you can download from
16http://cmusphinx.sourceforge.net/.  You should download and unpack it to
17the same parent directory as PocketSphinx, so that the configure script
18and project files can find it. On Windows, you will need to rename
19'sphinxbase-X.Y' (where X.Y is the SphinxBase version number) to simply
20'sphinxbase' for this to work.
21
22In a unix-like environment (such as linux, solaris etc):
23
24 * build and optionally install SphinxBase.  If you want to use
25   fixed-point arithmetic, you *must* configure SphinxBase with the
26   --enable-fixed option.
27
28 * if you downloaded directly from the CVS repository, you need to do
29   this at least once to generate the "configure" file:
30
31% ./autogen.sh
32
33 * if you downloaded the release version, or ran "autogen.sh" at least
34   once, then compile and install:
35
36% ./configure
37% make clean all
38% make test
39% make install
40
41XCode Installation (for iPhone):
42
43Sphinxbase uses the standard unix autogen system, and there's a script
44included, 'build_for_iphone.sh' that will setup configure to create
45binaries that are XCode friendly.
46
471) ./autogen.sh
482) ./build_for_iphone.sh simulator
493) ./build_for_iphone.sh device
50
51Then in XCode, open your project info, and for 'All Configurations', and
52set:
53
54'Header Search Paths' = "$(HOME)$(SDK_DIR)/include/pocketsphinx"
55'Library Search Paths' = "$(HOME)$(SDK_DIR)/lib"
56'Other Linker Flags' = "-lpocketsphinx"
57
58In MS Windows (TM), under MS Visual Studio 2010 (or newer - we test
59with Visual C++ 2010 Express):
60
61 * load sphinxbase.sln located in sphinxbase directory
62
63 * compile all the projects in SphinxBase (from sphinxbase.sln)
64
65 * load pocketsphinx.sln in pocketsphinx directory
66
67 * compile all the projects in PocketSphinx
68
69MS Visual Studio will build the executables under .\bin\Release or
70.\bin\Debug (depending on the version you choose on MS Visual Studio),
71and the libraries under .\lib\Release or .\lib\Build.
72
73Test scripts are forthcoming for Windows.
74
75For up-to-date information, see http://cmusphinx.sourceforge.net/
76
77