Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
459 views

graphing amplitude

I was wondering if someone could point me to a good tutorial or show me how to graph the amplitude from a byte array. The audio format I am using is: U LAW 8000.0 Hz, 8 bit, mono, 1 bytes/frame.
1
vote
3answers
140 views

How do I make python load a big(2hours) wave-file and convert it's contents into a time-frequency array?

I would like to access the array with something like array[5000][440] meaning 5000ms from the start and 440hz and it would give me a value of the frequency's amplitude at this very position. I could ...
1
vote
1answer
245 views

Android: Amplitude value to Decibel value?

I'm trying to get the decibel of noise being recored from mic on Android phone. I can get amplitude value and looking for the formula to convert it into decibel. I use following function of ...
1
vote
1answer
405 views

getMaxAmplitude() “always” reached

I want my app to react on a load sound like a clap. The problem is, that getMaxAmplitude() reaches it's maximum of 32762 even when talking in a normal voice which is >= my "allMaxAmpli" variable ...
1
vote
3answers
197 views

What is a correct formula of amplifying WaveForm audio?

I am wondering what a correct formula of amplifying WaveForm audio is from C++. Let's say there's a 16 bit waveform data following: 0x0000 0x2000, 0x3000, 0x2000, 0x0000, (negative part), ... Due to ...
1
vote
0answers
206 views

How to use FFT for large chunks of data to plot amplitude-frequency response?

I am a programmer and not a good mathematician so FFT is like some black box to me, I would like t throw some data into some FFT library and get out a plottable AFR (amplitude-frequency response) ...
1
vote
2answers
584 views

Extracting an amplitude list from *.wav file for use in Python

I'm having a little bit of programing and conversion trouble. I'm designing an AI to recognize notes played by instruments and need to extract the raw sound data from a wave file. My objective is to ...
1
vote
1answer
2k views

How to Calculate Frequency & Amplitude in Flash AS3 with Flash Player 9

How can I calculate Frequency & Amplitude in As3 with FP9. I got the all raw byte using SoundMixer.computeSpectrum(_testbytes, false, 0); var g:Graphics = this.graphics; g.clear(); ...
1
vote
3answers
1k views

Get the amplitude at a given time within a sound file?

I'm working on a project where I need to know the amplitude of sound coming in from a microphone on a computer. I'm currently using Python with the Snack Sound Toolkit and I can record audio coming ...
0
votes
0answers
29 views

Specgram Amplitude Filtering - MATLAB R2008a

So I have written a quick script in Matlab do some visualization for me- function spectro(filename,maxFreq) wavchunksizefix(filename); [y,fs] = wavread(filename); subplot(2,1,1); plot(y); ylim([0 ...
0
votes
0answers
12 views

How to obtain an amplitude value (RMS, etc) of music stream?

Sorry in advance for butchering the format. And thank you for reading/helping. I'm researching noise and personal media players (android powered phones). I need to return a value that correlates to ...
0
votes
1answer
52 views

How to use getMaxAmplitude - Android

I'm working on an App that can record en play audio using the MediaRecorder and MediaPlayer. I also want to display the value of the maxAmplitude. I tried to use the getMaxAmplitude but i cant get it ...
0
votes
1answer
95 views

Java: 2D Perlin Noise Creation

There are not many easy-to-follow Perlin Noise tutorials out there and certainly not in Java or 2D. I followed this tutorial to a point but it doesn't explain 2D noise very much at all. I know you ...
0
votes
0answers
108 views

Determine Amplitude of Sound From Microphone

I am trying to determine the amplitude of an instrument (trumpet, guitar, etc.) that is being recorded using the Java Sound API and display an amplitude vs. time graph. I haven't had much experience ...
0
votes
0answers
38 views

Dealing with MAX amplitude values?

When recording, I am encountering the problem of having MAX amplitude values. For example, here is the time-domain of my signal from an audio file I recorded (44.1Khz, 16-bit, mono): In the audio, ...
0
votes
1answer
185 views

kiss FFT bin amplitude question

I have been spending quite a bit of time studying FFT's. I am in particular interesting in using KISSFFT because it is a very portable C implementation. I am still very unclear how to turn i[x] and ...
0
votes
0answers
26 views

computing appropriate logarithmic parameter

(This question is partly programming/partly math/partly software, but I think someone on SO can help quickest). Basically, ffmpeg's -vol parameter is confusing me. 256 => normal (i guess it means ...
0
votes
1answer
281 views

how do I get a list of amplitudes from a audio file?

how do I get a list of amplitudes from a audio file using a linux command line tool ?
0
votes
3answers
736 views

Voice Activity Detection in Android

I am writing an application that will behave similar to the existing Voice recognition but will be sending the sound data to a proprietary web service to perform the speech recognition part. I am ...
0
votes
2answers
409 views

Simulink: Possible to form a Pulse Generator with amplitude between -1 and +1

Okay - I've got Simulink up and running and I'm using the Pulse Generator with a pretty simple transfer function and the scope. I would like however to use a pulse that goes from -1 to +1 instead of ...