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
Similar Posts:
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
Dec 21, 2010
We need to develop a flash voice conference application with using flash media server. The number of connections can be up to 20,000. is it possible with flash media server. Can it also possible with Peer to Peer. If we use flash media server what configuration needed for.
View 2 Replies
May 5, 2011
I will create a voice chat application with Adobe Flex and I want use the opensource Red5 as a server.But, I confuse how to start it. it's possible just use NetStream and NetConnection?
View 1 Replies
Nov 9, 2008
I would like to build a small application in AS3 so that my users can record their voice with microphone.I know there is a Microphone class but I don't know if AS3 allows to record the voice into a file that will be stored on the server.Is that possible to do so only with AS3?
View 2 Replies
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
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
Oct 1, 2007
i want to make a flash application which will record the sound Or else just grabs the voice input and plays it..!
View 7 Replies
Mar 21, 2010
I have a flex application and have embedded a flash (SWF) file into it using <mx:SWFLoader>. There is an "Exit" button on the Flash file. I want to be able to handle the button click event on the flex application.
So when that button in the flash file is clicked, I want to perform an action in the parent flex application.
View 2 Replies
Mar 16, 2011
I can't seem to figure out how to set the application control bar's background color in flex 4? It doesn't have the backgroundColor property, and I'm a little stuck.
View 2 Replies
Dec 21, 2009
I have a flex application that loads an external swf file. I created the external swf file using flash cs4 so I can add code to it if that is what it takes.
Here is the code I use to load my external swf:
//add button swf
var request:URLRequest = new URLRequest("http://www.yadayada.com/media/but_button.swf");
[Code].....
Can I have my external swf send click events to my flex application? How?
View 1 Replies
Oct 20, 2010
I have two applications. In one application the web browser control shows a flash movie that is embedded and in the other it does not, only shows place holder. I have identical code in both constructors to load a web control dynamically and then navigate to the requested web page.
I run both application in debug mode from within VS2010.
View 1 Replies
Nov 13, 2010
For classroom, how do I actually able to remotely control 100's PC from a master application? Like control the student who also using Flex application is possble with XMLsocket?
View 3 Replies
Mar 11, 2011
I am trying to create a Colorpicker control for my application. I prefer pure actionscript. Does someone know how to create a picker like this: [URL] Most interestingly I am interested how to draw the gradient because the gradient has a saturation,
View 2 Replies
Dec 17, 2009
i have a flex application that loads flash files using SWFLoader. is there a way to control the audio volume in that swf from my flex application ?
View 1 Replies
Feb 28, 2012
Is it possible to reference a control in an application from a static function?
What I have is a Viewstack containing VBoxes stored in separate controls. Ex:
<mx:ViewStack id="content" width="100%" height="100%" resizeToContent="true">
<controls:Login/>
<controls:Dash/>
[Code]....
Once I get logged in on my login control, I would like to change the selected index of my ViewStack. From my outside controls, I cannot reference my ViewStack by name. I can reference a public static function from an outside control however I cannot refer to the ViewStack from within that function.
View 3 Replies
Sep 6, 2010
i have uploaded in flex, swf file which is created in flash actionscript. This swf file is having the textArea controls.content of textarea changes as i perform some clicks, keyboard input.Now i want to access the content of textarea in my flex application's variable.I have seen some example where a movieclip object is created to get the content and load the method of flash project.
View 0 Replies
Dec 27, 2010
basically, what am doing is that am running a flash file (playing music) in the background of the app using webview, and when I want to stop the music , I just load "about:blank".I want to keep the flash file running (music) when my app gets paused (which works fine so far) the problem is when the app resumes, pressing on pause button launches a new webview instead of changing the link in the previous one and the sound doesn't stop.the only solution I found was to kill the process and restart the app, but that's not practical, any idea of how to still be able to use the same webview when resuming the app ?
Update: guess I wasn't clear enough, I have a webview widget stated as "gone" , I only need the audio form the flash file I'm running in the webview so the "play" button loads a URL that contains the flash file (so the user only hears music, and doesn't notice that I'm using a webview), when I press the back/home button the music doesn't stop (I like it that way) but when I go back and press on play again it loads another url in a new page, you get double music
View 1 Replies
Jan 17, 2010
I have a Tree Control inside my Flex Application which I want to edit on a doubleclick on a tree item. I found the properties doubleClickEnabled= "true", doubleClick="startEditMode()", and editable="true". With these functions I can detect a double click and I can change the editable property to true based on a double click. The problem is that after I double clicked on a Item i have to click once more to really enter the edit mode. That doesn't seem to be intuitive at all..
View 3 Replies
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
Jun 29, 2009
How to do voice recording using flash action script 8 with example.
View 1 Replies
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
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
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
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
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
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
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
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
Mar 10, 2012
I made an AIR application that sends voice between two computers, this is the code:
[Code]...
View 2 Replies