Actionscript :: Calculate The Average Frequency Of An Audio Recording Captured As A ByteArray In Flash?

Nov 30, 2011

Keeping it simple for now but assuming i have a ByteArray full of sample data is it possible to calculate the average frequency (thus a pitch) from the entire recording? Is this along the right lines? p = 69 + 12 x log2(f/440hz) ...

View 1 Replies


Similar Posts:


Actionscript 3 :: Calculate Frequency & Amplitude In Flash With Flash Player 9?

Nov 26, 2009

How can I calculate Frequency & Amplitude in As3 with FP9. I got the all raw byte using

[Code]....

View 1 Replies

Capture Numeric Input From User And Calculate Average?

Feb 26, 2010

This can't be too difficult but its killing me. I want my user to be able to type 3 numbers into 3 different input boxes, capture those numbers, calculate and display their average in a fourth text box.

I am not sure how to capture input from a textbox in AS3 in order to do these calculoatilo.

View 1 Replies

ActionScript 3.0 :: Calculate The Average Of A Series Of Numbers In An Array?

May 27, 2011

So I've got an input box on the UI, where integers are entered and stored in an array. I want to find out the average of the integers, but how would I calculate the sum?

View 1 Replies

Get Dominant / Average Color In GetPixels ByteArray?

Jan 10, 2010

So, I've got this [code]...

Is there a way to get, efficiently and quickly, the dominant color and/or the average color in pixels ByteArray.

noise is used for the example here. I'll be having something else drawn on that BitmapData instead.

I found some ways to extract the average color palate from a BitmapData, but this isn't enough for me since I want the average from a rect over that image.

View 2 Replies

ActionScript 3.0 :: Calculate What The Average Color Is By Retrieving The Color Of Each Pixel

Jun 19, 2009

I need a function that retrieves the average hexadecimal color values of a group of pixels in a square. Like a 4x4 area, and I want to be able to calculate what the average color is by retrieving the color of each pixel.

View 4 Replies

Actionscript 3.0 :: Captured Audio Is Not Playing

Jun 4, 2009

I am using red5server and flash cs3 and as3.0 and windows xp. i am trying to capture audio when user clicks on button start. next i will keep capturing for a maximum of 10 seconds or user clicks on stop button.once the maxtime ie 10 seconds reached or user clicks on stop then capturing will be stopped. my application working till this point.but if he clicks on play button then it should play the captured audio. [code]...

View 2 Replies

Php :: Recording Audio On Website: Red5 Stream Or Posting The Audio Data?

Sep 6, 2011

Let me first establish what I want to do:My user is able to record voicenotes on my website, add tags to said notes for indexing as well as a title. When the note is saved I save the path of the note along with the other info in my DB.Now, I have 2 choices to do the recording, both involve a .swf embedded in my site:

1) I could use Red5 server to stream the audio to my server and save the file and return the path to said file to my app to do the DB saving, seems rather complicated since I would have to convert the audio and move it to the appropriate folder that belongs to the user in a server side Red5 app, which I'm not very aware of how to build.

2) I could simply record the audio and grab its byte array, do a Base64 encoding on it and send it to PHP along with the rest of the data that is necessary (be it by a simple POST or an AJAX call), decode it on the server and make the file with the appropriate extension, audio conversion would also occur here using ffmpeg, this option seems simpler but I do not know how viable it is.

View 1 Replies

ActionScript 3.0 :: Does Recording From Mic Into ByteArray Usually Lag?

Mar 11, 2012

Summary: is there usually a lag when recording audio from the mic? I am using Thibault Imbert 'micrecorder' library on google code to record audio from the mic into a ByteArray. I am instructing my users to speak two seconds after the recorder starts. I know its two seconds after the recorder starts, rather than two seconds after the user presses the record button, because micrecorder issues time adjusted events of the recorder progress.

When I get the finished ByteArray the actual floats inside it that record the user speaking seem to be 2.5 seconds worth of samples into the ByteArray! So my question, as this is the first time I have recorded audio, is it usual to find a lag like this when recording? Or do you think I am getting something wrong with my math when indexing into the ByteArray?

View 0 Replies

Actionscript 3 :: Audio/video Recording Using Flash?

Sep 29, 2010

I want my users to record audio/video and post that to other users.

Is it possible to record video through Flash's and receive encoded video on server side without any further processing (i.e. just saving the stream to a file)? I did some Google search and found that it's possible with new microphone API [URL] Did anyone tried that already? How easy is to use Red5 server for recording? How can i get the recorded video/audio file(s) from it? DO i've to write some logic for this?

View 1 Replies

Flash :: Javascript Library For Recording User Audio?

May 8, 2011

This isn't another one of those "How can I record audio in the browser?" questions... I know that the HTML5 Stream API is around the corner and Flash can already access the user's microphone and camera. I'm simply wondering, as a Javascript developer with little knowledge of Flash, if anyone has developed a JS library that hooks into Flash's device capabilities for recording but sends the results back to javascript (presumably using ExternalInterface).

In other words... libraries like SoundManager2 utilize a Flash fallback for audio playback, but they don't seem to allow for recording. Has anyone written a JS library that uses an invisible Flash movie to allow audio recording?

View 2 Replies

ActionScript 2.0 :: Online Audio Video Recording Flash Media Server

Aug 21, 2006

Task is to take online interviews and record them for lather reviewing. I m new to media server and video streaming.

View 3 Replies

Flash :: Arrays - Passing Audio Data ByteArray To Javascript?

Sep 7, 2011

I'm able to record sound with a Flash application embedded in my website, this audio is saved to a ByteArray, which I need to pass to Javascript in order to post to my server along with other required data.

I know I can use AS3 ExternalInterface class to communicate with Flash from Javascript, but what would be the appropriate format or variable type in javascript to hold the ByteArray, and how can I ensure that I won't lose much audio data when doing so?

View 1 Replies

Recording The Audio Locally?

Jul 14, 2009

I am trying to figure out how to make a flash Application which can allow users to Record Audio from their Microphone. The recording needs to then be uploaded to a web server.I think the best way to do it would be to store the .flv or .mp3 file locally, and then submit the file to the server after the recording is completed.I have read in some places that this is impossible to do, however websites such as livevideo.com allow this too be done with Video as well, so I think Audio should be simple if it can be done with video.

View 1 Replies

Php :: Save Audio Recording In .mp3 Format?

Jun 3, 2011

I'm building a website that is supposed to record and upload audio to a server and also be able to play said audio. Currently I have a BB app that does the same, I record the audio in .amr format, send the bytes over to the server and convert it to an .mp3 file with ffmpeg. How can I manage to record audio and save it in .mp3 format? With Flash, HTML or any other means. My website is being built with PHP under the CakePHP framework.

View 3 Replies

Recording Audio And Converting Into MP3 File

Oct 1, 2009

I have an assignment to create an mp3/wav file using flash. This player is expected to record voice from a speech mic and also be controlled by a foot pedal. How to record voice data and convert it into .mp3 file but haven't found anything yet.

View 1 Replies

Actionscript :: Java For Audio/video Recording And P2p?

Dec 10, 2010

What is better to study. Java or Actionscript for audio & video recording and streaming.

And working with p2p.

Can java stream video/audio via p2p?

View 2 Replies

Actionscript 3 :: Red5 / Fms: Recording Audio From Soundmixer

Jan 4, 2011

i'm wondering if there's a way to record live audio from flash' SoundMixer (NOT from the microphone).

View 1 Replies

ActionScript 2.0 :: Recording Audio Output Without The Microphone?

Dec 2, 2006

I am having a problem trying to record internal sounds made from the flash file.I can record sound from the microphone no problem,What i want is to be able to record the sounds from the flash file without isung the microphone etc.

View 2 Replies

ActionScript 1/2 :: Non Streaming Audio Recording On Local File

Jun 18, 2006

I'm a pretty new in a flash programming. All I need is to capture the microphone and to record a voice on the local file. I know how can I do that using a stream to the Flash Media Server, but the storing local file seems to me a hard job.

View 1 Replies

Media Server :: Video And Audio Out Of Sync When Recording With FMS

Aug 18, 2009

We use a Flash component to allow a user on our web site to record from a Webcam on to our own Flash Media Server. The problem we are having is that the video in a 30 second FLV freezes at the 7th second but the audio continues. The video unfreezes after a couple of seconds but never catches up with the audio. At the very end there's a "Fast-forwarding" of video for the last few seconds so that at literally the last moment, everything's in sync. This happens for almost all of our recordings. Has anyone experienced this type of behavior?

View 5 Replies

Media Server :: Recording Of Video And Audio Is Asynchronous

Oct 15, 2010

I'm currently able to record audio and video (from a webcam) to a Flash Media Server. However, in some cases users have a webcam with no builtin
microphone. In that case the flash client uses the default microphone with 'Microphone.getMicrophone();' and possibly selects the micrphone of the PC.
 
A delay between audio and video is caused in cases with a separated webcam and microphone. There isn't a lot of delay on an internal network (e.g. LAN) however, there is a very large delay between audio and video on an external network (e.g. WAN).

View 2 Replies

Flex :: Recording Audio Directly Form Soundcard?

Jun 14, 2011

I would like to record sound that is currently played on the local computer (i.e. form winamp or youtube). I saw some codes that use the microphone, but this is undesired. The client machine may not have a microphone hardware or may play the sound on headphones. I think this must be possible but may be not a common task so that's

View 1 Replies

ActionScript 3.0 :: Encode Audio ByteArray As Mp3?

Dec 1, 2011

I'm recording audio in a Flash app and need to encode the bytearray being sent to the server. I haven't found a good encoder (client-side) to compress the bytearray before sending.

View 5 Replies

C# :: Video / Audio Recording On Website Service - Save To Server

Jun 5, 2011

I am developing (well, trying to anyway) a service where a member can record themselves on our website using their webcam. We need to be able to record that entire webcam session they had on our website for judges to determine whether they've cheated or not (it's a competition-based service). But, I can find no documentation, articles or even a sign that this is possible (other than knowing I've seen it in use many times). And I'm not sure what kind of hosting would be most appropriate for this type of service, and what steps would be required for me to get started on this.

View 1 Replies

Media Server :: Recording And Playing Back Streaming Audio And Video?

Sep 12, 2010

I have this sample code from the e-book: "Learning Flash Media Server 3". The purpose of the code is to create a FLV. The code is not running as it should. When I click on the 'record' button, the label is to change to 'recording', that dosen't seem to happen and also when I click on the 'Stop Record' button, I get the following error:
 
"TypeError: Error #1009: Cannot access a property or method of a null object reference.at MinRecord/stopRecord()"

[Code]....
 
My deduction is that the 'if' statement in the 'startRecord' function is not resolving to 'true' and hence the label is not changing to 'Recording'. Also I feel that the assingment to the variable 'ns' of type NetStream is not being done and hence in the function 'stopRecord' I get the above mentioned error message when I click on the stop button. How do I rectify these problems?

View 3 Replies

Media Server :: Recording Webcam Video Quality/audio Sync?

Jan 21, 2011

I'm trying to record a stream from a webcam using FMS4 developer edition.  The streams are recording on a linux box in .flv files.  These files though have problems.
 
1 - The video quality is terrible.  Fuzzy/blocky.  Any kind of motion looks awful.  Is there any way to improve this?

2 - The sound jumps/skips and goes out of time with the video.
 
As it is now this is useless.  I am trying to make a system where a user records a short video from the camera and then I upload it to YouTube from my server.  If you use Youtube's webcam page the video quality is quite acceptable and the audio is obviously in sync too, so they must know something I don't. [URL]..

View 2 Replies

Actionscript 3 :: Generate An X Second Silence Audio File With ByteArray And Adobe Air

Dec 15, 2011

I would like to generate a sound in Adobe Air using ByteArray. The sound should be a silence of x seconds. I found this code that I am using to generate the bytes:

private function encode(data : ByteArray) : ByteArray
{
var channels : uint = 2;
var bits : uint = 16;

[Code].....

But when I save the file using Filereference and import it into a flash file I get an error message saying that there were problem reading the file.

View 1 Replies

Media Server :: Recording Video/audio Files Using Flash Media Server Through Rmtp, And Allow Users To Access The Recorded Files Through Http?

May 25, 2009

As titled, what is the way to record video/audio files using Flash Meida Server through rmtp, and allow users to access the recorded files through http?What I am trying to do, is to record a user's microphone's input and save it to the server.fterwards, I would like other users to be able to access the recorded files and mainuplating the audio data, by computeSpectrum(), to do some visualization of the audio. As I know computeSpectrum() cannot work on streaming files, so I think I need to access the recorded files using http instead of rmtp. Is that true?

View 1 Replies

Media Server :: Write Access Denied For Stream Error When Recording Audio Stream

Jul 26, 2010

I've had FMS running on my local machine for a while and have had a little experience writing FMS apps, but I've just tried recording audio for the first time using the standard vod application and I keep getting a "Write access denied for stream" error. My AS3 code is copied and pasted for various examples and am confident that it works.
 
I'm running Windows XP service pack 3 & FMIS 3.5.
 
I've had a look at the vod/media directory and under windows->properties the read-only attribute is ticked. Every time I un-tick this it reverts back to being ticked. I've googled this and MS say that most programs ignore the read-only attribute and that it only really applied to files. I've also tried the MS fix for setting the read-only attribute via cmd and still no joy (doesn't fix read-only attribute or FMS recording the audio after setting via cmd).
 
I've also tried our dev server install of FMS (running under linux) and am getting the same results.
 
Here's my AS3 code...
 
private function initApp(event:Event):void
{
removeEventListener(Event.ADDED_TO_STAGE,initApp);

[Code].....

View 1 Replies







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