0
votes
1answer
61 views

Am I translating this C code to AS3 properly?

So I found some C code to decompress certain PCM samples, and I want to do the same in AS3. I have tried to do so, but it doesn't seem to be working. I know little to no C, although I'm quite fluent ...
0
votes
1answer
64 views

Delay When Playing Sound using as3wavsound

I am using the as3wavsound class to play .wav sounds from file in my ActionScript 3 project. However, even though I am preloading the sounds, I am getting a delay of about 1 second every time I play ...
2
votes
1answer
493 views

Playing successive wav sounds in as3

I am trying to play through AS3 external wav sounds in a successive way. The obvious way to do it is to use this algorithm: 1. play sound 1 2. when sound 1 is done, play sound 2 etc. The problem is ...
0
votes
0answers
96 views

Trying to send audio data from java to air

I have been experimenting with java desktop application and a adobe air application, I want to capture sound from desktop pc and stream to adobe air application. I have gotten as far the audio playing ...
0
votes
2answers
352 views

Compress wav file to a small m4a or mp3 file by using AS3/PHP

Is it possible to compress a wav file to a small m4a or mp3 file by using AS3 OR PHP?
1
vote
1answer
1k views

Recording WAV in Adobe AIR / Actionscript 3.0 - **Problems**

I'm trying to record from my headphone port directly into my microphone port (using an aux cable) in Adobe Flash Builder / AIR, but I'm having a couple problems: 1. The recording never sounds "full" ...
1
vote
2answers
2k views

Actionscript 3 - make sound only play once when objects touch

I have a griddle_mc, bacon_mc, and BaconCooking.wav. I want to play the wav when the bacon is moved onto the griddle. If I move the bacon until it just touches the griddle the wav plays fine, but if I ...
0
votes
1answer
129 views

Set wav file to filereference

I'm building a little recorder in flash and I have a little problem with sending the file that is recorded to php. Is there a way to simply send it with a var of do I need to set it to a file ...
1
vote
1answer
1k views

How do I play back a WAV in ActionScript?

Please see the class I have created at http://textsnip.com/see/WAVinAS3 for parsing a WAVE file in ActionScript 3.0. This class is correctly pulling apart info from the file header & fmt chunks, ...
0
votes
2answers
181 views

Trimming bit of the beginning off a recorder waveform

I've got a flash 10.1 app that lets me record microphone input to a wav without a media server, which I am saving to an Amazon S3 bucket. I have another process running on a server which gets wavs ...
5
votes
3answers
10k views

Embedding wav files in AS3 Flash/Flex project?

The Flash IDE is capable of embedding many types of uncompressed sound files, including wav, and offers optional compression when publishing. However, the [Embed] tag, only seems to allow embedding ...
3
votes
2answers
7k views

AS3 microphone recording/saving works, in-flash PCM playback double speed

I have a working mic recording script in AS3 which I have been able to successfully use to save .wav files to a server through AMF. These files playback fine in any audio player with no weird effects. ...
3
votes
1answer
1k views

How do I upsample a wav file using AS3?

I am trying to upsample an 8000hz, 16-bit wav file to 11025hz in AS3. At this point, I am not concerned about applying the low-pass filters that I know I will eventually need. I've been referencing ...