Main > Free Download Search >

Free transcription software voice recognition software for linux

transcription software voice recognition

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 308
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
Express Scribe Transcription for Linux 4.22

Express Scribe Transcription for Linux 4.22


Digital Transcription software for typists with foot pedal control more>> Free digital transcription software for typists - Express Scribe is professional audio playback control software designed to assist the transcription of audio recordings. It is installed on the typists computer and can be controlled using the keyboard (with hot keys) and/or foot pedals. This computer transcriber application features variable speed playback, foot pedal operation, file management and more. This program is free.
Features:
~ Ability to play compressed wav or dct files.
~ Variable speed (constant pitch) playback.
~ Can use computer rudder pedals (or some other specialist transcription pedals) to control playback.
~ Ability to Dock portable recorders to load recordings.
~ Uses systemwide HotKeys so you can control playback when using other software (eg. Microsoft Word).
~ 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.
~ Express Scribe is free.
<<less
Download (745KB)
Added: 2009-04-07 License: Freeware Price: Free
200 downloads
Express Scribe Transcription for mac 4.22

Express Scribe Transcription for mac 4.22


Digital Transcription software for typists with foot pedal control more>> Free digital transcription software for typists - Express Scribe is professional audio playback control software designed to assist the transcription of audio recordings. It is installed on the typists computer and can be controlled using the keyboard (with hot keys) and/or foot pedals. This computer transcriber application features variable speed playback, foot pedal operation, file management and more. This program is free.
Features:
~ Ability to play compressed wav or dct files.
~ Variable speed (constant pitch) playback.
~ Can use computer rudder pedals (or some other specialist transcription pedals) to control playback.
~ Ability to Dock portable recorders to load recordings.
~ Uses systemwide HotKeys so you can control playback when using other software (eg. Microsoft Word).
~ 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.
~ Express Scribe is free.
<<less
Download (606KB)
Added: 2009-04-06 License: Freeware Price: Free
202 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
Fast Icon Users for Linux -

Fast Icon Users for Linux -


User icons with functions like: add, chat, edit, offline, remove, send, upload more>> Description:
11 icons of users.
Content:
User icons with functions like: add, chat, edit, offline, remove, send, upload, user, user group, video chat, voice chat
<<less
Download (313KB)
Added: 2009-04-04 License: Freeware Price:
211 downloads
Phone for voice modem 0.1

Phone for voice modem 0.1


Phone for voice modem is only a simple wrapper for the chat program, which allows you to call some numbers. more>>
Phone for voice modem is only a simple wrapper for the chat program, which allows you to call some numbers on the hayes-compatible modem.

<<less
Download (0.045MB)
Added: 2006-12-08 License: GPL (GNU General Public License) Price:
1051 downloads
Modular Audio Recognition Framework 0.3.0-devel-20070108

Modular Audio Recognition Framework 0.3.0-devel-20070108


Modular Audio Recognition Framework is a general cross-platform framework. more>>
Modular Audio Recognition Framework is a general cross-platform framework with a collection of algorithms for audio (voice, speech, and sound) and natural language text analysis and recognition, along with sample applications (identification, NLP, etc.) of its use.
MARF may act as a library in applications or be used as a source for learning and extension. A few example applications are provided to show how to use the framework.
There is also a detailed manual and the API references in the javadoc format as the project tends to be well-documented. MARF and its applications are released under a BSD-style license.
Enhancements:
- This release features a number of bugfixes and the completion of integration for a couple feature requests.
- It passes well through the standard testing runs.
<<less
Download (0.70MB)
Added: 2007-01-08 License: BSD License Price:
1021 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
123 Live Help Linux Server Software 4.2

123 Live Help Linux Server Software 4.2


123 Live Help offers stronger features to you. With the V_4.2,The Customer panel remains web-based to be cross-platform and no client installation involved, while the Admin panel and Operator panel are turn to Windows applications to offer richer functions: Operator Statistics Added,Offline Message Management Optimized,Valuable Customer Recognition, Search Function Upgraded & Code Generator Integrated, Optional video chat for staff is available. more>>

123 Live Help Linux Server Software - With the 123-live-help (V_4.2), The Customer panel remains web-based to be cross-platform and no client installation involved, while the Admin panel and Operator panel are turn to Windows applications to offer richer functions: Operator Statistics Added,Offline Message Management Optimized,Valuable Customer Recognition, Search Function Upgraded.

123 Live Help Chat Server Software supports from one seat to unlimited seats of staff members, which makes it the right solution for business of any sizes.

Features:

*advertisement module gives your product more opportunities to be learned by your customers

*Remote controller of 123livehelp via MSN

A remote controller and monitor of the live chat conversation

*Proactive Chat Invitations

The staff member can monitor a website and invite a visitor from certain webpage to chat to up-sell product or offer help. The visitors wont have to click any chat button on the webpage. Whats more, the invitation wont be blocked by pop-up killer.

*Client Choose Staff.

Client can request help from a very staff, which is more friendly to a returned customer.

*Real-time Text Chat & Optional Video Chat for Staff

The java server enables instant chat.

*Web-based Client

123LiveHelp flash client loads fast and end users dont need to download any plug-ins to chat with staff.

*Visitors Waiting in Queue

*Chat Transfer

from one staff to another.

*Canned Answers

*Auto-detect and display language.

*New API

Admin can generate chat code to define the availability of the staff members and the departments, whether to show the dormant client, choose the skin of the windows, etc.

*Multiple Chat Requests

One agent can chat with multiple clients.

*Chat Search More Powerful

*Custom UI

Customizable client interface,and skin collection.

*Integrate External Database

*Auto-detect User Details

Auto-detect extensive visitors information including IP address and country.

*Backend Monitor

*Department Management

*Chat logs sent to email


Enhancements:
Version 4.2

Integrable with 123FlashChat & embeded database can be turned off.


Version 4.1

advertisement module is introduced, and free edition is released.


Version 4.0

Admin panel and Operator panel are turn to Windows applications to offer richer functions.


System Requirements:
<<less
Download (56Mb)
Added: 2009-05-19 License: Free Price: Free
12 downloads
Modular Audio Recognition Framework PoC-demo (Distributed)

Modular Audio Recognition Framework PoC-demo (Distributed)


Modular Audio Recognition Framework is an open-source research platform and a collection of voice/sound/speech/text. more>>
Modular Audio Recognition Framework is an open-source research platform and a collection of voice/sound/speech/text and natural language processing (NLP) algorithms written in Java and arranged into a modular and extensible framework facilitating addition of new algorithms. MARF can run distributedly over the network and may act as a library in applications or be used as a source for learning and extension. A few example applications are provided to show how to use the framework. There is also a reasonbly detailed manual and the API references in the javadoc format as the project tends to be well-documented.
Enhancements:
- This is the first release of the Distributed MARF proof-of-concept (PoC) implementation.
- MARFs pipeline stages can run on multiple computers using 3 different communication technologies: CORBA, RMI, and Web Services.
- The six implemented services include SpeakerIdent Front-end Service (plus the client), MARF Pipeline, Sample Loading, Preprocessing, Feature Extraction, Training and Classification.
- This is based on the snapshot-0.3.0-devel-20060811.
<<less
Download (24.4MB)
Added: 2006-09-19 License: BSD License Price:
1131 downloads
Express Scribe For Linux 4.14

Express Scribe For Linux 4.14


Express Scribe is professional audio playback control software for Linux designed to assist with the transcription of audio recordings. Install on the typists computer and can be controlled using the more>>

Free digital transcription software for typists on Linux - Express Scribe is professional audio playback control software designed to assist the transcription of audio recordings. It is installed on the typists computer and can be controlled using the keyboard (with hot keys) and/or foot pedals. This computer transcriber application features variable speed playback, foot pedal operation, file management and more. This program is free.
Features:
~ Ability to play compressed wav or dct files.
~ Variable speed (constant pitch) playback.
~ Can use computer rudder pedals (or some other specialist transcription pedals) to control playback.
~ Ability to Dock portable recorders to load recordings.
~ Uses systemwide HotKeys so you can control playback when using other software (eg. Microsoft Word).
~ 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.
~ Express Scribe is free.

Requirements: Sound Card, speakers or headset

<<less
Download (0.59MB)
Added: 2009-04-09 License: Freeware Price: $0
198 downloads
 
Other version of Express Scribe For Linux
Express Scribe for Linux -The full features list of Express Scribe transcription playback software follows but a quick ... Works with speech recognition software such as Dragon Naturally Speaking to automatically
License:Freeware
Download (NA)
208 downloads
Added: 2009-03-31
Perlbox Voice 0.09

Perlbox Voice 0.09


Perlbox Voice is a voice command system. more>>
Perlbox.org provides voice solutions for Linux and Unix desktop control. There is great need for quality accessibility for the Linux desktop.

The need will only grow as Linux and open source Unix continue to grow more popular on home, educational, corporate and government desktops and servers. Contact us for more information.

Linux should be accessible. We have worked with the open source community for three years to grow several free software products centered around voice and speech recognition, accessible interfaces, and voice control for Linux.

<<less
Download (1.22MB)
Added: 2005-09-15 License: GPL (GNU General Public License) Price:
1520 downloads
Asterisk Live! CD 0.1.6

Asterisk Live! CD 0.1.6


Asterisk PBX is Linux based, open source PBX software that provides voice over IP in three protocols. more>>
Asterisk PBX is Linux based, open source PBX software that provides voice over IP in three protocols and is interoperable with most standards-based telephony equipment using comparatively inexpensive hardware.

If you want to play around with Asterisk check out this distribution which is available as a Live CD and a Compact Flash install.
<<less
Download (36.4MB)
Added: 2005-05-18 License: GPL (GNU General Public License) Price:
910 downloads
Convert::Transcribe 0.02

Convert::Transcribe 0.02


Convert::Transcribe is a Perl extension for transcribing natural languages. more>>
Convert::Transcribe is a Perl extension for transcribing natural languages.

SYNOPSIS

use Convert::Transcribe;

$t = new Convert::Transcribe();
$t->fromfile(filename);
# or
$t = new Convert::Transcribe();
$t->fromstring("transcription def. containing newlines");
# or
$t = new Convert::Transcribe(filename);
# or
$t = new Convert::Transcribe("transcription def. containing newlines");

$t->transcribe("text");

$t->generated_code(); # for debugging

<<less
Download (0.004MB)
Added: 2007-07-27 License: Perl Artistic License Price:
820 downloads
QtPhone 0.1.1 Beta

QtPhone 0.1.1 Beta


QtPhone is a cross-platform telephone emulation application. more>>
QtPhone is a cross-platform telephone emulation application designed to be used with a PC, speakers, microphone, V.92 voice modem and a standard phone line.
ISDN, ADSL and Networking/Cable ( i.e VoIP ) will also be supported. Features include Caller Identification and Voice Mail.
Main features:
- Telephone, Speakerphone Capabilities
- Voice Mail, Caller Identification
- Wireless Headset/Handset Capabilities
- Supports V.92 Full Duplex Voice Modems,
- ISDN, ADSL and Networking/Cable ( i.e. VoIP )
- Voice Activation, Security Features
- Linux, Windows, MAC Versions
- Embedded Linux Version
Enhancements:
- Integrates the comms portions of the code.
<<less
Download (1.3MB)
Added: 2005-11-07 License: GPL (GNU General Public License) Price:
1446 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5