Skip to content

Commit

Permalink
Released as version 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
zaf committed Feb 1, 2012
1 parent 43783bd commit 0af7024
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
12 changes: 11 additions & 1 deletion ChangeLog
@@ -1,5 +1,15 @@
2012-02-01 Lefteris Zafiris <zaf.000@gmail.com> - 0.5
Added SSL support. Interrupt keys can now be defined
by the user. Added (optional) Beep indication before recording.
Recording time is now conrtolled by silence detection. There is no
absolute timeout, the recording will terminate after a
user defined (3 sec by default) period of silence, or the pressing
of the interrupt key(s).
Added a sample AGI script that submits queries to WolframAlpha and
sets the answer as a dialplan variable.

2012-01-10 Lefteris Zafiris <zaf.000@gmail.com> - 0.4
Added option for user defined timeout.
Added option for user defined timeout.
Remove spaces between digits in returning text string.
Documentation updates.

Expand Down
5 changes: 5 additions & 0 deletions README
Expand Up @@ -136,3 +136,8 @@ License
-------
The speech-recog script for asterisk is distributed under the GNU General Public
License v2. See COPYING for details.

--------
Homepage
--------
http://zaf.github.com/asterisk-speech-recog/
6 changes: 1 addition & 5 deletions speech-recog.agi
Expand Up @@ -92,11 +92,7 @@ my $host = "www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium
my $flac = `/usr/bin/which flac`;

# Check endianness #
if (unpack("h*", pack("s", 1)) =~ /01/) {
$endian = "big";
} else {
$endian = "little";
}
$endian = (unpack("h*", pack("s", 1)) =~ /01/) ? "big" : "little";

# Store AGI input #
while (<STDIN>) {
Expand Down
5 changes: 5 additions & 0 deletions wolfram/README
Expand Up @@ -76,3 +76,8 @@ License
-------
The speech-recog script for asterisk is distributed under the GNU General Public
License v2. See COPYING for details.

--------
Homepage
--------
http://zaf.github.com/asterisk-speech-recog/

0 comments on commit 0af7024

Please sign in to comment.