Main > Free Download Search >

Free speech and debate competitions software for linux

speech and debate competitions

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 269
Speech and Debate Timekeeper 2.2

Speech and Debate Timekeeper 2.2


Speech and Debate Timekeeper is an open source, multi-platform timer for speech and debate competitions. It has speech order and time limits preset fo... more>> <<less
Download (1458KB)
Added: 2009-04-20 License: Freeware Price: Free
225 downloads
Speech Recognition HOWTO 2.0

Speech Recognition HOWTO 2.0


Speech Recognition HOWTO is a project that contains instructions for using speech recognition software and hardware. more>>
Speech Recognition HOWTO is a project that contains instructions for using speech recognition software and hardware and their use on Linux systems.
Enhancements:
- Changed license information (now GFDL) and added a new publication.
<<less
Download (MB)
Added: 2006-10-09 License: (FDL) GNU Free Documentation License Price:
1124 downloads
Speech Dispatcher 0.6.2

Speech Dispatcher 0.6.2


Speech Dispatcher is a device independent layer for speech synthesis. more>> <<less
Download (0.81MB)
Added: 2007-07-06 License: GPL (GNU General Public License) Price:
848 downloads
Julius Speech Recognition Engine 3.5.3

Julius Speech Recognition Engine 3.5.3


Julius is a high-performance, two-pass large vocabulary continuous speech recognition (LVCSR) decoder software. more>>
Julius is a high-performance, two-pass large vocabulary continuous speech recognition (LVCSR) decoder software for speech-related researchers and developers. Based on word 3-gram and context-dependent HMM, it can perform almost real-time decoding on most current PCs in 20k word dictation task.
Major search techniques are fully incorporated such as tree lexicon, N-gram factoring, cross-word context dependency handling, enveloped beam search, Gaussian pruning, Gaussian selection, etc. Besides search efficiency, it is also modularized carefully to be independent from model structures, and various HMM types are supported such as shared-state triphones and tied-mixture models, with any number of mixtures, states, or phones.
Standard formats are adopted to cope with other free modeling toolkit. The main platform is Linux and other Unix workstations, and also works on Windows. Julius is distributed with open license together with source codes, and has been used by many researchers and developers in Japan.
Main features:
- An open-source software (see terms and conditions of license (Japanese and English translation)).
- Real-time hi-speed and accurate recognition based on 2-pass strategy.
- Low memory requirement: less than 32MBytes required for work area (<<less
Download (1.0MB)
Added: 2007-01-04 License: BSD License Price:
1054 downloads
speechd-el 2.0

speechd-el 2.0


speechd-el is an Emacs client to Speech Dispatcher, BrlTTY, and other alternative output devices. more>>
speechd-el is an Emacs client to Speech Dispatcher, BrlTTY, and other alternative output devices.
speechd-el provides a complex speech/Braille interface to Emacs, and is focused especially on (but not limited to) blind and visually impaired users.
It allows the user to work with Emacs without looking on the screen, using the speech and Braille output.
Enhancements:
- The output mechanism was modularized and redesigned to support multiple output devices.
- The most important impact of this change is BrlTTY support, which works in a way similar to how speech output works.
- This means that speechd-el can be used with both Speech Dispatcher and BrlTTY now.
<<less
Download (0.14MB)
Added: 2006-07-07 License: GPL (GNU General Public License) Price:
1204 downloads
Speegle Define 1.1

Speegle Define 1.1


Speegle Define is a Firefox extension that gives a spoken definition of a word using Speegle Speech Technology. more>>
Speegle Define is a Firefox extension that gives a spoken definition of a word using Speegle Speech Technology. You highlight the word you would like explained with highlight left click on any internet page you are reading.

Right click and choose "Audio Definition" from the pop up menu and its definition will be read back to you in English through your speakers or headphones.

<<less
Download (0.004MB)
Added: 2007-06-02 License: MPL (Mozilla Public License) Price:
874 downloads
Reliable Response Notification 2.0

Reliable Response Notification 2.0


Reliable Response Notification provides guaranteed delivery of critical messages to a wide range of devices. more>>
Reliable Response Notification provides guaranteed delivery of critical messages to a wide range of devices. The project guarantees that every emergency will have one, and only one, person responding and taking charge of the recovery.
For integrated services, like some network monitors, help-desk packages, and security suites, Reliable Response Notification allows the user to update records via their mobile devices. It is available as either a standalone server or as a hosted service.
Enhancements:
- The product supports three types of groups: broadcast, escalation and on-call.
- Many devices are supported, including email, SMS, text-to-speech, Jabber, GTalk, SameTime IM, and alphanumeric pagers.
- Integrations for a number of packages are available.
- There is an easy system to add new integrations as needed.
<<less
Download (MB)
Added: 2007-05-31 License: Other/Proprietary License Price:
878 downloads
SpeakGoodChinese 0.5

SpeakGoodChinese 0.5


Speak Good Chinese is a cross-platform application that allows you or your students to train their Mandarin pronunciation. more>>
Speak Good Chinese is a cross-platform application based on GTK technology that allows you or your students to train their Mandarin pronunciation. Our software is based on Praat, leading software in speech analysis. Our speech technology is backed by the Institute of Phonetic Sciences part of the University of Amsterdam.
SpeakGoodChinese software was supported financially by the DU. Questions can be mailed to stefandekonink@xs4all.nl, they will be forwarded to the appropriate project member.
Enhancements:
- This release makes administrative tasks easier for teachers or students that want to manage or distribute their own wordlists.
- Another new feature in this subsystem is the shuffle function.
- Several bugs were solved related to cleaning up old recordings.
- New documentation was added.
<<less
Download (9.0MB)
Added: 2007-06-24 License: GPL (GNU General Public License) Price:
858 downloads
Speech::Recognizer::SPX::Server 0.0801

Speech::Recognizer::SPX::Server 0.0801


Speech::Recognizer::SPX::Server is a Perl module for writing streaming audio speech recognition servers using Sphinx2. more>>
Speech::Recognizer::SPX::Server is a Perl module for writing streaming audio speech recognition servers using Sphinx2.

SYNOPSIS

my $sock = new IO::Socket(... blah blah blah ...);
my $log = new IO::File(server.log);
my $audio_fh = new IO::File(speech.raw);
my $srvr
= Speech::Recognizer::SPX::Server->init({ -arg => val, ... }, $sock, $log, $verbose)
or die "couldnt initialize sphinx2: $!";

my $client = new IO::Socket;
while (accept $sock, $client) {
next unless fork;
$srvr->sock($client);
$srvr->calibrate or die "couldnt calibrate audio stream: $!";
while (!$done && defined(my $txt
= $srvr->next_utterance(sub { print $log "listeningn" },
sub { print $log "not listeningn },
$audio_fh))) {
print "recognized text is $txtn";
...
}
$srvr->fini or die "couldnt shut down server: $!";
exit 0;
}

This module encapsulates a bunch of the stuff needed to write a Sphinx2 server which takes streaming audio as input on an arbitrary filehandle. Its not meant to be flexible or transparent - if you want that, then read the code and write your own server program using just the Speech::Recognizer::SPX module.

The interface is vaguely object-oriented, but unfortunately it is presently not possible to create multiple instances of Speech::Recognizer::SPX::Server within the same process, due to severe limitations of the underlying Sphinx-II library. You can, however, create multiple distinct servers with judicious use of fork, as shown in the example above.

It is possible that this will be fixed in a future release of Sphinx-II.

<<less
Download (0.089MB)
Added: 2006-06-23 License: Perl Artistic License Price:
1218 downloads
Championship Generator 3.2

Championship Generator 3.2


Championship Generator produces a list of all the meetings which must occur between the participants of a championship. more>>
Championship Generator produces a list of all the meetings which must occur between the participants of a championship.

It can be used to produce the challenges between teams if competitions are not foreseen to directed elimination. Championship Generator project supports championships where it is necessary to consider the matches at home and away.

It can also try to avoid fights between the big teams in the first and last days. It also supports the case in which two teams have a mutual stadium, and therefore cannot simultaneously play at home or away.

<<less
Download (0.60MB)
Added: 2006-01-06 License: GPL (GNU General Public License) Price:
785 downloads
Express Scribe for Linux -

Express Scribe for Linux -


Express Scribe is a professional audio player software for Linux. more>> Express Scribe is a professional audio player software for PC, Mac or Linux designed to assist the transcription of audio recordings. It is installed on the typists computer and can be controlled using a transcription foot pedal or using the keyboard (with hot keys). This computer transcriber application also offers valuable features for typists including variable speed playback, multi-channel control, file management and more. This program is free.
The full features list of Express Scribe transcription playback software follows but a quick way to test is to simply download and install it. You dont need to purchase anything and it only takes a couple of minutes to complete downloading and installation.
Features
Variable speed playback (constant pitch).
Supports many professional foot pedals which connect to the game, serial or USB port to control playback. More info...
Uses hot keys to control playback when using other software (eg. Word).
Ability to dock both analog and digital portable recorders to load recordings.
Works with Microsoft Word and all major word-processor applications.
Automatically receives and loads files by internet (FTP), email or over a local computer network.
Automatically sends typing to the person who dictated the work.
Works with speech recognition software such as Dragon Naturally Speaking to automatically convert speech to text.
Loads CD audio directly - listen as it loads in the background.
Integrate with dictation management systems using the Express Scribe SDK.
Works with FastFox typing utility to turn difficult medical/legal phrases and common terms into mere shortcuts from your keyboard.
Express Scribe is free.
Note:
There are two options for running Express Scribe on the Linux operating system.
Option 1: Native Linux Exe
Option 2: WINE Install
You can choose them between the download link 1 and download link 2.
<<less
Download (NA)
Added: 2009-03-31 License: Freeware Price: Free
208 downloads
Speech::Recognizer::ViaVoice 0.02

Speech::Recognizer::ViaVoice 0.02


Speech::Recognizer::ViaVoice contains Perl wrappers for IBMs ViaVoice speech Recognizer library. more>>
Speech::Recognizer::ViaVoice contains Perl wrappers for IBMs ViaVoice speech Recognizer library.

SYNOPSIS

use Speech::Recognizer::ViaVoice;
$| = 1;
if (0 == connectEngine) {
if ( 0 == defineVocab(myTestVocab, [hello,world,quit]) ) {
print please say "hello", "world", or "quit" at each prompt..., "n";

while (0 == startListening) {
print "speak> ";
if (0 == recognize) {
my ($s, $score) = (getWord, getScore);
if (defined($s)) {
printf "%s, score=%dn", $s, $score;
if ($s eq quit) {
exit 0;
}
} else {
printf "not recognized!n";
}
}
stopListening;
}
}

disconnectEngine;
}

This module provides very basic use of IBMs ViaVoice library (http://www-4.ibm.com/software/speech/enterprise/te_3.html) in perl. It allows its user to pass a list of speech commands for recognition in a perl list, connect to the engine, and request recognized spoken words. The most notable feature missing from the current version is the ability to select different ViaVoice users. I plan to add this functionality shortly, but for now you must use the default user.
Consult the ViaVoice documentation for ViaVoice setup. Most will probably just need to run vvstartuserguru, which requires a java runtime environment. Results will be better if you take the time to do a little training to your own voice in this utility.

You can use this perl module for reconition of words from IBMs vocab dictionary for your chosen locale without further preparation. To recognize words not available in the dictionary or to recognize phrases, you need to create a file with phonetic spellings for use by the provided script pronunciations.pl (installed in /usr/local/bin by default). This utility reads a text file whose name is supplied as its sole argument. The file should contain lines with two fields separated by a tab character:

Deborah --- TAB -->D EH B OW R AX
Deborah --- TAB -->D EH B AXR R AX
Axl Rose -- TAB -->AE K S AX L R OW Z

The text on the left is the word or phrase to be recognized, and the text on the right is a phonetic spelling of the format specified in the ViaVoice docs (section 3 of /usr/doc/ViaVoice/bpreadme.txt in my installation). As in the example, a word or phrase might have more than one common pronunciation. You can provide all of them, one on each line.

pronunciations.pl will most likely require super user privileges to write its output to files in the ViaVoice lib directory:

/usr/lib/ViaVoice/vocabs/langs/En_US/pools/

<<less
Download (0.008MB)
Added: 2007-06-13 License: Perl Artistic License Price:
865 downloads
DRACONi Automation Alpha0.05

DRACONi Automation Alpha0.05


DRACONi Automation is a Web-based digital entertainment/automation control package. more>>
DRACONi Automation project is a Web-based digital entertainment/automation control package.
DRACONi Automation aims to be a home automation and digital entertainment/automation control package. Its designed to be modular, meaning new kinds of functionality can be added easily.
Currently, the X10 CM11A and Applied Digital Ocelot/Leopard are supported. It can also control XMMS and the Festival Speech Synthesis System.
Enhancements:
- User based system complete with per-user security permissions (you can restrict certain users to only user certain parts of the system)
- Multiple interfaces
- HTML - for most standard web browsers
- mobile HTML - for mobile devices with smaller screens such as PDAs and larger cell-phones that can read HTML, but have
- xHTML Basic/WAP 2.0 - for mobile devices such as cell phones with very small screens and low bandwidth
<<less
Download (0.11MB)
Added: 2007-01-16 License: GPL (GNU General Public License) Price:
1014 downloads
PlanetGenesis 1.7

PlanetGenesis 1.7


PlanetGenesis is a Java program designed to produce models of planets and landscapes. more>>
PlanetGenesis is a Java program designed to produce models of planets and landscapes.

A little like Mojoworld but free (as in beer and speech) and no where near as good.

PlanetGenesis produces:

- 16bit greyscale bitmaps.
- Wavefront format objects.
- POV-RAY 3.5 mesh2 meshs.
- Terragen terrains.

based on pseudo-random noise. Which can be used in 3D rendering sofware.
<<less
Download (0.23MB)
Added: 2007-02-08 License: BSD License Price:
583 downloads
KTTS - KDE Text-to-Speech System 0.3.0

KTTS - KDE Text-to-Speech System 0.3.0


KTTS - KDE Text-to-Speech is a subsystem within the KDE desktop for conversion of text to audible speech. more>>
KTTS - KDE Text-to-Speech is a subsystem within the KDE desktop for conversion of text to audible speech.
KTTS is currently under development and aims to become the standard subsystem for all KDE applications to provide speech output.
Main features:
User Features:
- Speak any text from the KDE clipboard.
- Speak any plain text file.
- Speak all or any portion of a text file from Kate.
- Speak all or any portion of an HTML page from Konqueror.
- Use as the speech backend for KMouth and KSayIt.
- Speak KDE notifications (KNotify).
- Long text is parsed into sentences. User may backup by sentence or paragraph, replay, pause, and stop playing.
- Audio output via aRts or GStreamer (version 0.8.7 or later)
Programmer Features:
- Priority system for screen reader outputs, warnings and messages, while still playing regular texts.
- Plugin-based architecture for support of a wide variety of speech synthesis engines and drivers.
- Permit generation of speech from the command line (or via shell scripts) using the KDE DCOP utilities.
- Provide a lightweight and easily usable interface for applications to generate speech output.
- Applications need not be concerned about contention over the speech device.
- FUTURE: Provide support for speech markup languages, such as VoiceXML, Sable, Java Speech Markup Language (JSML), and Speech Markup Meta-language (SMML).
- FUTURE: Provide limited support for embedded speech markers.
- Asynchronous to prevent system blocking.
<<less
Download (4.0MB)
Added: 2005-06-14 License: GPL (GNU General Public License) Price:
1605 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5