The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
45 views

Export audio file volume dB levels in Linux

I would like to be able to generate some sort of file that will store the volume levels of an audio file. I am pretty flexible about this but an example would be a csv that shows the volume every ...
1
vote
0answers
32 views

Recognition of Audio

I'm working on a program that shall record audio recognizable, so it can later be easily compared with other audio files. The audio files will contain something like speech, so I was wondering what ...
15
votes
3answers
410 views

How to convert a pitch track from a melody extraction algorithm to a humming like audio signal

As part of a fun-at-home-research-project, I am trying to find a way to reduce/convert a song to a humming like audio signal (the underlying melody that we humans perceive when we listen to a song). ...
-2
votes
1answer
27 views

Measure amount of clipping [closed]

Can anyone point me to a command-line tool or Python module that measures the amount of clipping in an audio file? For example something comparable to http://www.ber-sd.com/dl_clipping.html.
1
vote
1answer
161 views

Audio Analysis in WinJS

I've been poking around the API to find what I'm looking for, as well as searching online (but examples of Windows Store apps are pretty scarce). What I'm essentially looking for is a starting point ...
-1
votes
1answer
228 views

Get frequency using FFT [closed]

I'm working on a science fair project involving spectral frequency analysis and I have been able to use FFT to come up with amplitude, but I'm trying to find the frequency of each wave in realtime.
1
vote
2answers
831 views

Matlab: Finding dominant frequencies in a frame of audio data

I am pretty new to Matlab and I am trying to write a simple frequency based speech detection algorithm. The end goal is to run the script on a wav file, and have it output start/end times for each ...
0
votes
1answer
191 views

How to interpret audio bytes?

I want to write a Voice Stress Analysis tool. I'm opening the audio stream for reading: TargetDataLine line; AudioFormat format = new AudioFormat((float) 44100, 16, 1, true, false); DataLine.Info ...
0
votes
0answers
52 views

Where should i look for a sound analyser in java?

I have some recorded telephonic conversations. Now i wish to analyse those files using java Some files have SIT tones, and some are blank where the customer have hung the line. I wish to seggregate ...
0
votes
2answers
632 views

How to find X seconds of silence into a mp3 file?

I need to find a silence into a mp3 file, Simply as that. For example: Find a silence GREATER than X seconds in "file.mp3", Then send an errorcode 0 if X seconds of silence found, Or errorcode 1 if ...
1
vote
1answer
204 views

Identifying silence at the end of an mp3 using java

Trying to detect silence at the end of audio in mp3 format, well all formats would be useful but mp3 format is the most important
0
votes
0answers
123 views

Looking for Windows API or commandline library to test audio quality of encoder input + output

I'm on a project which involves a complex video encoding process that supports multiple input+output formats. I would like a way to ensure that the audio portion of input file A is reasonably similar ...
0
votes
0answers
285 views

Noise at the beginning of autocorrelation

So basically I run my autocorrelation algorithm on nice sound wave of high E guitar string (100ms sample of 44100 Hz mono sound). What I get is: http://imageshack.us/photo/my-images/534/chartzf.png/ ...
1
vote
1answer
123 views

File decompression memory footprint

I want to process audio offline on iOS, but have a query regarding memory usage. If I use AVAssetReader to decompress an MP3 to raw PCM data, the memory footprint would be huge. So how would I go ...
3
votes
3answers
872 views

FFT - When to window?

I've seen the various FFT questions on here but I'm confused on part of the implementation. Instead of performing the FFT in real time, I want to do it offline. Lets say I have the raw data in float[] ...
3
votes
3answers
633 views

iOS Advanced Audio API for decompressing format

On iOS, is it possible to get the user's audio stream in a decompressed format? For example, the MP3 is returned as a WAV that can be used for audio analysis? I'm relatively new to the iOS platform, ...
0
votes
1answer
425 views

Using Python to measure audio “loudness”

I'm looking to calculate the loudness of a piece of audio using Python — probably by extracting the peak volume of a piece of audio, or possibly using a more accurate measure (RMS?). What's the best ...
1
vote
3answers
387 views

Audio Analysis for Sheet Music

I'm currently working on a program that analyses a wav file of a solo musician playing an instrument and detects the notes within it. To do this it performs an FFT and then looks at the data ...
2
votes
1answer
662 views

Can I do real time audio analysis with Corona SDK

I'm looking at getting started with simple mobile app development. Corona SDK looks like a pretty nice fit for some of the ideas I'd like to toy with. I'm wondering if it is possible to do real time ...
3
votes
3answers
591 views

Volume from byte array

I'm new to audio analysis, but need to perform a (seemingly) simple task. I have a byte array containing a 16 bit recording (single channel) and a sample rate of 44100. How do I perform a quick ...
1
vote
1answer
1k views

Rapid spectral analysis of audio file using Python 2.6?

What I want to do is to have a subroutine that analyses every 200 milliseconds of a sound file which it is given and spits out the frequency intensity value (from 0 to 1 as a float) of a specific ...
7
votes
1answer
151 views

Verizon SongID - How is it programmed?

For anyone not familiar with Verizon's SongID program, it is a free application downloadable through Verizon's VCast network. It listens to a song for 10 seconds at any point during the song and then ...
9
votes
8answers
2k views

Mathematical analysis of a sound sample (as an array of numbers)

I need to find the frequency of a sample, stored (in vb) as an array of byte. Sample is a sine wave, known frequency, so I can check), but the numbers are a bit odd, and my maths-foo is weak. Full ...