Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
2answers
6k views

Analyze audio using Fast Fourier Transform

I am trying to create a graphical spectrum analyzer in python. I am currently reading 1024 bytes of a 16 bit dual channel 44,100 Hz sample rate audio stream and averaging the amplitude of the 2 ...
8
votes
4answers
308 views

Sorting a list of RGB triplets into a spectrum

I have a list of RGB triplets, and I'd like to plot them in such a way that they form something like a spectrum. I've converted them to HSV, which people seem to recommend. from PIL import Image, ...
7
votes
1answer
61 views

Harmonics count in a music sample

To determine the richness of a sound, I would like to determine the number of harmonics in a sample of music. For that, I'm using Processing with the Minim library which gives me a full spectrum with ...
6
votes
3answers
1k views

Clojure/Java: Java libraries for spectrum analysis of sound?

I am looking for a library that can accept a chunk of audio data and return the average amplitude over time within a given frequency band. I've already asked this question over at comp.dsp, but it's ...
5
votes
1answer
200 views

How to resample/rebin a spectrum?

In Matlab, I frequently compute power spectra using Welch's method (pwelch), which I then display on a log-log plot. The frequencies estimated by pwelch are equally spaced, yet logarithmically ...
5
votes
2answers
3k views

How to generate the audio spectrum using fft in C++?

I want to generate an audio spectrum (http://www.youtube.com/watch?v=ZNT8Sn4IKbo&feature=related) of a mp3 audio file. Basically this problem requires calculating the fft of the audio signal. How ...
4
votes
3answers
7k views

Units of a Fourier Transform (FFT) when doing Spectral Analysis of a Signal

My question has to do with the physical meaning of the results of doing the spectral analysis of a signal, or, put another way, of interpreting what comes out of throwing a signal into an FFT of a ...
3
votes
3answers
361 views

Rhythm detection through analyzing the audio spectrum

I'm building a rhythm-based game, and facing a lot of problems with rhythm-detection. I receive the current spectrum of a playing song. It looks like a float array with 512 floats. 256 for left and ...
3
votes
5answers
1k views

Signal amplitude against time in Java

I'm racking my brain in order to solve a knotty problem (at least for me). While playing an audio file (using Java) I want the signal amplitude to be displayed against time. I mean I'd like to ...
3
votes
4answers
1k views

“Winamp style” spectrum analyzer

I have a program that plots the spectrum analysis (Amp/Freq) of a signal, which is preety much the DFT converted to polar. However, this is not exactly the sort of graph that, say, winamp (right at ...
2
votes
3answers
221 views

Real-Time FFT with High Resolution while Keeping Latency Low

I have read all the wikipedia articles and stackoverflow articles on fft and resolution. However, nothing has helped in learning how to get high resolution frequency without having a huge latency ...
2
votes
1answer
1k views

Bad Spectrum from Android's FFT-Output (Visualiser)?

I have some Kind of Question about FFT (Actually I believe it's more about Androids FFT-Output from Visualizer.getFFT()). I have created a Music-Player with own Library function for Android including ...
2
votes
4answers
118 views

Find the most colourful image in a collection of images

Given a set of images what would be a way to rate them in order of which ones have the most complete coverage of the full colour spectrum? UPDATE I've posted a sister question which is an abstraction ...
2
votes
2answers
228 views

Where to begin learning about audio processing?

I've tried looking up how I might go about this for a while now, and maybe I am using the wrong terminology in my searches or it's way too advanced for me. I basically want to be able to analyze audio ...
2
votes
4answers
2k views

MP3 Bit Rate Quality Detection through Frequency Spectrum Analysis

Does exist any program that detects the bitrate of an mp3? I'm not talking about the effective bitrate that the file has been encoded with, but the real bitrate that can be calculated only by ...
2
votes
2answers
1k views

Real-time spectrum analyzer with API

I'm looking for a C or C++ API that will give me real-time spectrum analysis of a waveform on Windows. I'm not entirely sure how large a sample window it should need to determine frequency content, ...
2
votes
2answers
699 views

AS3 computeSpectrum fft true

I am just trying to understand what the values sent back from computeSpectrum(bytes,true,0) mean. I have values ranging from 0 to 1 for each float i read from the byte array but does each value ...
2
votes
2answers
1k views

Spectrogram C++ library

For my current project in C++ / Qt I need a library (LGPL is preferred) which can calculate a spectrogram from a signal ( basically an array of doubles ). I already use Qwt for the GUI part. Any ...
1
vote
0answers
91 views

Bass.dll just Spectrum data C#

I am trying to create a game based on beat and spectrum detection. I am currently stuck on that my function returns not quite what i want, beacose the array is not fully assigned. The last element ...
1
vote
2answers
211 views

Generate next color in spectrum

everyone. How would I generate the next color in the color spectrum? Like, a function that takes a red value, a green value, and a blue value for input and output. I could input solid red (RGB 255, 0, ...
1
vote
0answers
446 views

Audio processing with fft iphone app

I am working on one app in which i need to do the spectrum analysis of the incoming audio sounds. I am new to it only thing i know is that i need to use the FFT. I looked in to the aurio touch app but ...
1
vote
4answers
308 views

Fourier Series Transform Recover Original Signals

Suppose I have three complex waveforms (consisting of many sinewaves): A, B and C. Each one has the following frequency: 550, 600, 700 Hz respectively. Now I add the three signals i.e. do a ...
0
votes
1answer
26 views

Converting NMR ascii file to peak list

I have some Bruker NMR spectra that i am using to create a program as part of a project. My program needs to work on the actual spectrum. So i converted the 1r files of the Bruker NMR spectra to ...
0
votes
2answers
50 views

Unexpected result from discrete fourier spectrum analysis of sine-sample

http://jvalentino2.tripod.com/dft/index.html My code is really just a copy of the above: package it.vigtig.realtime.fourier; import java.io.File; import java.io.IOException; import ...
0
votes
1answer
64 views

Analyze sound by channels in flash player 11

referring to my old question AS3: Analyzing sound spectrums one by one, one channel at once , with flash player 11 and using Sound.extract,is it possible to extract a single channel and ...
0
votes
3answers
94 views

How to catch the event when spectrum of an audio reached a specific height, like triggered event made by a loud sound?

I already have the program of the player, wave form generator, spectrum analyzer, the list box where the time will be recorded. These stuffs are working. Now, I want to add the feature, when you will ...
0
votes
3answers
275 views

Why do I need to apply a window function to samples when building a power spectrum of an audio signal?

I have found for several times the following guidelines for getting the power spectrum of an audio signal: collect N samples, where N is a power of 2 apply a suitable window function to the samples, ...
0
votes
0answers
61 views

How to compare two .mp4 files?

I would like to compare two mp4 files, does somebody has an idea? Maybe by interposing the video spectrum? Thanks.
0
votes
1answer
371 views

Drawing spectrum of an image in C++ (fftw, OpenCV)

I'm trying to create a program that will draw a 2d greyscale spectrum of a given image. I'm using OpenCV and FFTW libraries. By using tips and codes from the internet and modifying them I've managed ...
0
votes
1answer
105 views

Note Onset Detection using Spectral Difference

Im fairly new to onset detection. I read some papers about it and know that when working only with the time-domain, it is possible that there will be a large number of false-positives/negatives, and ...
0
votes
0answers
179 views

xmpp ejabberd spectrum facebook

We are developing IM chat client using ejabberd server. We are using spectrum as a gateway to connect facebook and yahoo. Facebook spectrum instance is running properly , but not sending any roster. ...
0
votes
0answers
101 views

Video (flv|mp4) Sound Analyz with actionscript!

Is there any way to get real-time sound informations (sound power like spectrums) from flv or mp4 videos? i want to get any sound info. from playing video for send this informations to other ...
0
votes
2answers
379 views

Detecting audio spectrum

I am writing an audio visualizing application which will detect the low, mid and high frequencies of a song. I have looked endlessly on google and can't seem to find anything and the Apple developer ...
0
votes
0answers
72 views

facebook spectrum instant problem dead but pid-file exists

I am using spectrum1.4.7. I have created msn, yahoo and facebook spectrum instances and able to run spectrum instances properly. But when I check status of the instances using $spectrumctl list I got ...
0
votes
1answer
152 views

Adding name space to ejabberd server

I am using ejabberd-2.1.2 server. How can I add new name space to existing ejabberd server. I would like to add name space ('http://jabber.org/protocol/rosterx') XEP-0144 Roster Item exchange. ...
0
votes
1answer
1k views

Drawing Color Spectrum with Waveform

i've come across this ActionScript sample, which demonstrates drawing of the color spectrum, one line at a time via a loop, using waveforms. however, the waveform location of each RGB channel create ...
0
votes
4answers
788 views

Flex: computeSpectrum with streaming media?

I have a Flex3 app I wrote and I'm streaming audio over RTMP from a Red5 server. I'd love to be able to use SoundMixer.computeSpectrum(), but the spectrum data is all zeros. In one location, Adobe ...
-1
votes
2answers
291 views

How to scale FFT output of wave file?

Wave file: 44100 Hz, 16 bit, dual channel. I use FFT to calculate magnitude at each frequency bins of output. But I don't know to scale it to draw (real-time) spectrum. Anybody can help me ?