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
Similar Posts:
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
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
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
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
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
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
Jun 27, 2011
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="[URL]" layout="absolute" creationComplete="init();">
<mx:Script> <![CDATA[
import mx.controls.Alert;
import mx.core.mx_internal;
import flash.media.Camera;
[Code] .....
So, I play the record video , but there is no image , just voice
View 6 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
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 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
Apr 11, 2012
I develop failover fms application with server-side action script. But i have a problem that FMS can't continue to record stream with record mode "append".
Environment: FMS 4.5.1 r484 on CentOS 5.5/6.0
Goals:
I have 2 same data streams in failover application and republish primary to livepkgr application.
I have to store of last 10 hours intact recorded video (DVR).
Failover app logic:
1. I create NetConnection and NetStream to livepackager;
2. When primary stream is connected it attach the primary stream to livePackager NetStream
3. If primary stream is disconnected it reattach the backup stream to livePackager NetStream
Problem: I have testing environment. It stop primary stream every 5 min, and started primary stream 5 min after stopping.
It work's, fine, but after a few hours testing LIVEPACKAGER falls. It can't record a stream, NetStream.Record.Start -> NetStream.Record.NoAccess -> NetStream.Record.Stop
Search a solution: I try to relaunch recording process and have no success. try to shutdown/start livepackager, it's same, try to restart server, same no success.
I cant stream.clear() or record with mode "record" cause it clears my dvr cache, I cant clean stream directory in livepackager application.
[Code]....
View 5 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
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
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
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
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
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
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
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
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
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
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
May 9, 2011
tips on creating voice recording application in web and also streaming media
View 1 Replies