C++ :: Writing A Program Which Uses Voice Recogniton ?

May 2, 2010

I'm a design student currently dabbling with Arduino code (based on c/c++) and flash AS3. What I want to do is to be able to write a program with a voice control input.

So, program prompts user to spell a word. The user spells out the word. The program recognizes if this is right, adds one to a score if it's correct, and corrects the user if it's wrong. So I'm seeing a big list of words, each with an audio file of the word being read out, with the voice recognition part checking to see if the reply matches the input.

Ideally i'd like to be able to interface this with an Arduino microcontroller so that a physical output with a motor could be achieved in reaction also.

Thing is i'm not sure if I can make this program in flash, in Processing (associated with arduino) or if I need another C program-making-program. I guess I need to download a good voice recognizing program, but how can I interface this with anything else? Also, I'm on a mac. (not sure if this makes a difference)

View 1 Replies


Similar Posts:


Flash :: Live Voice Chat With Manipulated Voice Audio With RTMFP

Mar 27, 2012

We are building a live RTMFP voice chat application with Cumulus. While the basic voice transfer works pretty easy using NetStreams, we have one big problem:There does not seem to be a way to manipulate the microphone data that the NetStream sends, and also not a way to manipulate the data the listening NetStream receives before it is played.However, this is exactly what we need. We do not want to transfer the normal microphone recorded audio, but first pitch it, then send it, then play it. Or first send it, then pitch it, then play it. But it seems that the whole audio recording, speex encoding, speex decoding and audio playback is completely encapsuled within the NetStream class.The only ways to achieve what we want (and all of them removing NetStream completely) seem to be:Send raw pitched audio data. That does work, but is of course a lot of data to send and will likely not work fast enough outside of our local LAN testing.

Pitch audio data, convert to ogg/mp3 using existing encoders for flash, send, decode ogg/mp3 and play. But this would mean encoding each and every sample packet that is received from the microphone, adding header stuff, etc. So this would likely not even yield that much of a benefit compared to raw audio data.2.1. This would actually be a good way if there was a Speex encoder/decoder for flash. But ironically, there is none other than the built in one (which is used for encoding/decoding audio in NetStreams) that cannot be explicitly used. ot offering it, Adobe...Send the data to the Cumulus server, pitch (and probably convert) there and send to the recipient. This would likely not even be that much faster than 1. and also throw away the exact benefit of RTMFP, P2P communication.

View 1 Replies

Actionscript 3 :: Record Voice And Playback Voice With A Delay Using Flash?

Mar 9, 2012

I've been working on a Flash script that allows the user to speak and playback what the user is saying after certain but exact time, say 10 seconds.

View 1 Replies

Actionscript 3 :: Read File Text While Text File Still Writing By C++ Program?

Jan 21, 2011

How can Flash AS3.0 Read file text while text file still writing by C++ program ?

I have some code that I asked before + I modify some line but It can read only text file that completely writing.

import flash.events.Event;
import flash.net.URLLoader;
import flash.net.URLRequest;

[Code]....

Now My task is read real time file and send xArray and yArray to another function but I don't know how can I code it.

View 1 Replies

ActionScript 3.0 :: Add An Exit Button Onto Program So When Its Clicked It Exits The Program Completely

Nov 4, 2008

Im trying to add an exit button onto my program so when its clicked it exits the program completely.. I've tried some of the suggestions on the forums but they arnt working. what I have been using and its not working..

// CLICK to Exit
exit_Btn.addEventListener("mouseUp", goExit);
function goExit(evt:MouseEvent) {
fscommand("quit");
};

View 9 Replies

ActionScript 2.0 :: Start An Unrelated Program (such As Window's Media Player) From Inside Of A Flash Program?

Sep 29, 2010

Is there a way to start an unrelated program (such as Window's media player) from inside of a flash program?

View 2 Replies

ActionScript 2.0 :: Program A Timer For A Typing Tutorial Program?

Mar 24, 2003

I need to program a timer for a typing tutorial program. It needs to go to 5 minutes. When the timer gets to 5 minutes the movie has to go to frame 13 which displays the results of the typing test.

View 1 Replies

Actionscript :: Connection From Program To The Server Using XAMPP Server And Program In Flex?

Oct 26, 2010

i have the following code ]

[Code]...

but no connection established what is the reason behind not know help required and one more thing XAMPP is installed in D: drive.

View 1 Replies

ActionScript 3.0 :: Record Voice From A .swf App?

Dec 30, 2008

So, it's been about 2 years since I've had to use any Flash. But I wanted to figure out how to record voice from a .swf app

View 2 Replies

ActionScript 3.0 :: Do Voice Recording Using Flash 8?

Jun 29, 2009

How to do voice recording using flash action script 8 with example.

View 1 Replies

ActionScript 3.0 :: Text To Be Moved Along With The Voice?

Oct 30, 2009

I have a text and voice in seperate. When ever the voice is moving, I want the text to be moved along with the voice?

View 6 Replies

ActionScript 3.0 :: Voice Recorder + Mp3 Convertion?

Feb 11, 2011

i'm trying to make a on line voice recorder + server upload. Today, i can do it in wav format, but i really wish to record it in mp3 or wma or other format so i can record small files. The actionscript is:

[Code]....

View 1 Replies

ActionScript 3.0 :: Possible To Record Voice Using Headphone In AS3

Mar 18, 2011

Is it possible to record voice using headphone in AS3, I have heard about FMS and cookies but didnt get any proper tutorial or source link. I am totally failed to implement ExternalInterface in AS3 for both call and callback methods.

View 7 Replies

Professional :: Animation Control From Voice?

Apr 5, 2011

I want to control flash animation from voice, like after animation start, to pause animation will speak "STOP" from microphone animation will stop on same time or speak "START" animation will start from same timeline.

View 2 Replies

Php :: Record Voice Files Using PHP, FLASH?

Jan 14, 2010

I am developing an application where I need to record voice(for those who does not have a webcam so they can use only microphone to record voice) or video(those who have a a webcam - like laptop or external) files and save them on server, thereafter save the file name and logged in users id on database for later access.

I know I need to use some sort of flash app for this. But is there any free one which could server this purpose or even if there are paid ones which could serve this purpose that would be great. I tried google but may be I was not being able to go after the proper term or something, I could not succeed finding a proper solution for this.

View 5 Replies

Android :: Google Voice API For AIR|Flex?

Nov 3, 2010

With the release of AIR 2.5 for Android Flex-developers gain access various system API of the operating system. Are there any official (or unofficial) APIs Google Voice for ActionScript?

View 2 Replies

Flash :: P2P Voice Chat FP 10 Rtmfp?

Nov 3, 2010

I am using Adobe Citrus and Air. The goal is to make a voice chat application with low latency. I take the sound samples that I get from the Microphone SAMPLE_DATA_EVENT encode them in using Native Process and speexenc.exe.

The question with method should I use for the sending of the samples. I tried object repication and the latency is to big.

View 1 Replies

Flex :: Voice Won't Go To Another Text To Speech?

Aug 11, 2011

is there any possible Text to speech in flex Note: The voice wont go to another text to Speech website(example google translate)

View 1 Replies

Actionscript 3 :: Sends Voice Between Two Computers?

Mar 10, 2012

I made an AIR application that sends voice between two computers, this is the code:

[Code]...

View 2 Replies

ActionScript 3.0 :: Record The User Voice & Act On It?

Sep 3, 2009

Is it possible to record the end user by mic? And what kid of actions can I do with the recording? Can I get for example the volume of the sound (decibels) in real time? Can I save the record on a file?

View 3 Replies

ActionScript 3.0 :: Control Application With Voice?

Nov 5, 2011

I'd like to know if it is possible to control an application with one's voice, using AS3. My project is an application that will be use a some kind of remote to control the various systems (domotique) in my house; the apps can be use with the buttons (way1) and the voice (way2). For example, I enter a room, wants to turn the lights on (they have the proper equipment of course). I have two choices, I either press the button for lights on the pad on the wall, or say something like "Lights ON" or whatever.

View 7 Replies

IDE :: Google Voice Mail Widget?

Dec 31, 2009

Is there a way we could embed this widget into flash?

HTML Code:

<object type="application/x-shockwave-flash" data="https://clients4.google.com/voice/embed/webCallButtonVm" width="230" height="85"><param name="movie" value="https://clients4.google.com/voice/embed/webCallButtonVm" /><param name="wmode" value="transparent" /><param name="FlashVars" value="id=xxxxx&style=0" /></object>

View 6 Replies

ActionScript 2.0 :: Voice Recognition In Flash

Jun 24, 2011

is that possible that flash can develop voice recognition application? if user says "A" then flash can call movieclip "A", or in the application e-learning, user just say "next" then the application going to the next page.

View 1 Replies

Load Up A Random Voice Bubble Image?

May 15, 2010

I'm looking to help a friend with his site and basically, I need a good tutorial on how I could create a character with a voice bubble that, when you click on a button, displays a random quote.  Also, I know this might not be the right forum to ask this in, but would this be easier to do in Dreamweaver if I just place the item of the character and have it load up a random voice bubble image?  If so, are there any good tutorials for that?

View 1 Replies

Media Server :: Mic Not Connecting For Voice Recording?

Jan 20, 2011

Suddenly mic not connecting to server.  I have FP 10.1. 102.64  Windows XP 32 bit and explorer 8.   See link which instructs me to "change"  but no response.

View 4 Replies

Flex :: Record Voice And Send It To Server?

Nov 17, 2010

I need to record the voice of the student from the client and send it to server to check whether there are any gramatical mistakes in it. I have designed the client in flexMy problem is, i have no idea of how to store the recorded sound and send it to the server

View 2 Replies

Actionscript 3 :: Saving Recorded Voice In Flex?

Apr 26, 2011

I am trying save the recorded voice locally in my file system using flex and as3. I am successful in recording voice and playback again. I am using web application prospective in Flex. Here I noticed that if I used windowed application, I am successfully saving voice record in my system(using adobe air file system).

View 3 Replies

Actionscript 3 :: Record Voice And Save It To Mp3 File

Sep 24, 2011

Is it possible to record (5 seconds) a voice with the microphone and save it as a mp3 file WITHOUT sending data to the server? I would like to save the file with FileReference (some times ago I did an experiment saving a bitmap and it worked).

View 1 Replies

ActionScript 3.0 :: Custom Google Voice Coding?

Aug 24, 2009

As I play with the below script and test it published it all works except Google Voice doesnt call my phone, so I'm not sure where the disconnect is after inputting the data. When I test the movie, I get these Output errors:

[Code]...

View 0 Replies

Actionscript 3.0 :: Playing External Mp3 Voice Overs?

Mar 16, 2010

I have an old as2 animation project with multiple voice overs that I am trying to update to AS3. One issue I have run into is playing voice overs where the animation stops until the voice over is done playing and then it advances to the next frame and another voice over plays. I created a new sound object, sound channel and so on for my first sound. If I place the same code on the next corresponding frame like I did is AS2, I get a bunch of errors, mostly duplicate function errors. I suppose I could change the variable names if I had just a few voice overs but I have several hundred. This creates a problem as you can see. All the googling I have done has not resulted in any useful information. So my question is - how do I do this? I put my old AS2 code in the comments tags.

Code: Select all/*_root.stop();
// Load voice
VSound = new Sound(Voice1_mc);

[code].....

View 14 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved