Tagged Questions
0
votes
0answers
26 views
How to change frequency of audio file and save it as mp4 file on sdcard?
I m trying to make an app where user can record his voice and can play the voice in funny tone. Like talking tom application but not just that..He shd be able to share that recorded sound file.
I m ...
0
votes
0answers
25 views
how to determine serial frequency notes of an audio recorded file 3gpp, amr, aac in Android
I'm new here.. can anybody help me with some tutoring about codes of how to create a simple frequency note detector from an audio file in Android. I'm trying to make an Android app to record ...
0
votes
1answer
54 views
Android playback quality
A portion of an application that I am writing requires me to play a heart sound. When I play it using the source below, several problems arise.
1) It's not very loud, even when I set it to max ...
0
votes
0answers
29 views
Getting frequency from a mp3 or wav file [duplicate]
Researching the Internet, I found out that for getting the frequency of the sound from a mp3 file or wav file, I need to use FFT algorithm. Can someone give me a good pythonic way of implementing the ...
0
votes
0answers
61 views
Sound editing and equalizer on python
Im currently using pyglet as my sound library on python,
The library is great but it does not contain an important feature i really need:
Frequency control while playing a certain song (lets say ...
0
votes
0answers
45 views
OpenAL/SFML get pitch value
I've been googling for a while to see if there is any way to retrieve the frequency/pitch of some sound buffer. I know there is alSourcef in OpenAL that changes the pitch of some sound. Basically, I ...
-4
votes
1answer
42 views
Dynamics sound frequency on left and right ear [closed]
i already try to develops a program using java to create an audio that the frequency on left and right ears are different and the frequency of the audio can be adjusted. How can this happen, what ...
0
votes
1answer
165 views
0
votes
1answer
82 views
Modify a wave file with C++
I would like to load a song, modify it and then save the new song. I'm looking to a way to do that in C++.
My aim is to make a software that will only keep the bass frequencies and remove the high ...
2
votes
0answers
276 views
Any AFSK libraries for Android? (for data input via Android headphone jack)
I'm trying to implement a audio jack data interface using AFSK and a micro-controller.
Through searches I've seen a couple implementations that use iPhones, such as this:
...
-1
votes
1answer
49 views
BFSK implementation on sound card [closed]
My question is that is it possible to develop a Java modulator of BFSK using the sound card of computer? With baud rate of 100.
1
vote
1answer
163 views
Java playing wrong sound frequency
I am writing a java sound application that transitions linearly from one frequency to another.
When I input a constant frequency (aka the first and last frequency are the same), the correct frequency ...
1
vote
1answer
233 views
iPhone audio frequency [duplicate]
Possible Duplicate:
How to detect sound frequency for particular sound in iphone?
I am seeking a way to find the frequency of mic input.
I can record my voice or a sin noise in a temporary ...
0
votes
1answer
106 views
How can I convert an audio file containing pure tones back to serialized data?
Signal processing is a new domain for me, and I don't quite know where to start looking for the solution to my problem.
I have a line graph that was converted to an audio file consisting of nothing ...
2
votes
1answer
604 views
FFT algorithm getting wrong sound frequency value
I have performed a FFT algorithm(it is partially MIT) on a 440Hz sample link to the sound sample ttp://www.speedyshare.com/R6d9g/440.wav. But I get wrong sound frequency -> 510Hz.
1.Is the byteArray ...
0
votes
1answer
147 views
Is there any c# way [to get]/[library which provides the] sound frequency info? [duplicate]
Possible Duplicate:
Frequency Analyzer in C#
I am looking for easy way(or any way) to get the current sound frequency from the computer microphone. I would like to make a guitar tuner of ...
0
votes
0answers
108 views
Getting sound frequency at the moment from the mobile's microphone
I am developing app for Windows Phone which needs to read the sound frequency from the mobile's microphone.
For now I want to create just a logic, because I do not have a phone to test it on(right ...
0
votes
0answers
78 views
voice change in android
I have requierement to change the voice in android programatically
I will record a voice it should be play back with a different modulation,
frequency. so that the original voice is altered.
Is ...
0
votes
1answer
1k views
Audio playback and spectrum analysis libarary for C#
I would like to create a little application that plays back a music file (format doesn't really matter). The hard part is: at the same time I would like to display the current amplitude of the lower ...
3
votes
1answer
452 views
Frequencies and amplitudes of sound file in C#
I'm trying to create a program which gets the various "notes" in a sound file (WAV or MP3) and can get the frequency and amplitude of each. I've been searching around for this, and of course there is ...
1
vote
2answers
254 views
how to retrieve the different original frequency in each FFT caculating and without any frequency leakage in java
I'm fighting for such question as recovering the original frequency from audio data recorded by mic.
Sorry for my english...
Let me explain this question more clearly. I have generated some ...
3
votes
2answers
951 views
Get the frequency of an audio file in every 1/4 seconds in android
I have a sound file (.3gp) and its about ~1 min. I would like to get the frequency of this sound file in every 1/4 seconds. My idea is to receive samples in every 1/4 seconds from the audio file and ...
2
votes
2answers
1k views
Use iPhone to recognize sound frequency in range 20-24 Hz
My boss wants me to develop an app, using iPhone to recognize sound frequencies from 20-24 Hz that humans cannot hear. (iPhone frequency response: 20 Hz to 20 kHz)
Is this possible? If yes, can ...
3
votes
2answers
522 views
java audio frequency filter
I'm developing a simple audio player in java. The only advanced feature I need is a frequency filter. It's not necessarily a full-featured equalizer function, with different gains for specific ...
4
votes
2answers
229 views
Why do we use only the first buffer in aurioTouch project
I'm investigating aurioTouch2 sample code.
And I noticed, that when we analize audio data, we use only the first buffer of this data, and never other buffers.
in void ...
2
votes
1answer
525 views
How to detect the value for lowest and highest frequency in aurioTouch project [duplicate]
Possible Duplicate:
How to get Frequency from FFT result
I'm investigating aurioTouch2 sample code.
And in draw view fuction one function is always called to compute fft data, so we can ...
0
votes
1answer
270 views
Audio frequency and amplitude
I need to record audio from iPhone. During recording I need to know, how many audio waves I have at the current moment and frequency and amplitude of each wave.
It seems to me, that avaudiorecorder ...
5
votes
1answer
237 views
Is there an library in Java for emitting a certain frequency constantly?
Right, well. First time I'm actually using Java to fix a problem. I bought a new headphone set called Sennheiser 120 HD; but there's an issue.
If there isn't a constant emission of audio then the base ...
0
votes
1answer
592 views
Correctly decoding/encoding raw PCM data
I'm writing my WAVE decoder/encoder in C++. I've managed to correctly convert between different sample sizes (8, 16 and 32), but I need some help with the channels and the frequency.
Channels:
If I ...
1
vote
2answers
143 views
Audio sample frequency rely on channels?
If you have audio encoded at 44100Hz that means you have 44100 samples per second. Does this mean 44100 samples/sec for a channel, or for all channels?
For example if a song is stereo and encoded at ...
2
votes
1answer
2k views
Android AudioRecord frequency filter step by step
Android: I am new to voice process, I have created AudioRecord Object with sampleRate 8000Hz using JTransform library i am trying to filter frequency there are couple of things in the following code ...
1
vote
2answers
565 views
iPhone app audio recording only in above certain frequency
I am currently engaged in a audio recording based application for iPhone and iPad. Here I have done the basic audio recording feature myself, but I don't have any idea about how to record the audio ...
3
votes
4answers
2k views
Java equivalent of c# system.beep?
I am working on a java program, and I really need to be able to play a sound by a certain frequency and duration, similarly to the c# method System.Beep, I know how to use it in c#, but I can't find a ...
1
vote
1answer
427 views
Sound Frequency detecting?
What is the solution to detect specific words from audio file?
I have a lot of audio file (same codec) and each file is only about 15 seconds long. (Note: all audio files are the same person / same ...
1
vote
2answers
653 views
What is the theory behind active noise cancellation?
In a previous question, I had asked Why can't I simply negate the source time domain amplitude values to produce a destructive noise signal?
One of the posters said that while simply producing a ...
0
votes
2answers
121 views
How to determine note frequencies?
I'm trying to determine the frequency of a note in a given octive. My functions are below and I based them from the javascript on this site. Everything that it has works find but its missing some, for ...
3
votes
2answers
462 views
Java frequency analysis performance
I'm working on an application that samples audio and needs to do real time processing (FFT and harmonic product spectrum) of this data.
I need to use a sampling rate of 44100Hz and need a frequency ...
0
votes
1answer
493 views
Unable to get correct frequency value on iphone
I'm trying to analyze frequency detection algorithms on iOS platform. So I found several implementations using FFT and CoreAudio (example 1 and example 2). But in both cases there is some imprecision ...
0
votes
0answers
579 views
ANDROID: creating a 3D graph from a audio file
I want to create a 3D graph from an audio file.
The audio is recorded from within the app and saved as raw audio, i already have that done.
X-Axis: time
Y-Axis: frequency
The amplitude should be ...
1
vote
1answer
1k views
Counting real time audio frequency in java
I have a problem counting voice input frequency from the audio input of my microphone. Can anyone help me with this?
I'm supposed to get an audio input from my microphone and count its frequency.
...
-4
votes
2answers
238 views
Finding the frequency of a sine wave in the microphone
I am looking for a way to get the frequency of a sine wave from a tape recorder plugged into a microphone socket on a Windows PC. It's for a small project I'm working on to see if I can store data on ...
1
vote
0answers
329 views
increasing record time in android?
I have a frequency indicator sound recorder which record sound successfully but it record for only 4 seconds.I need more than 4 seconds to record the code is given below:
public class vr1 extends ...
5
votes
3answers
764 views
Play stereo tone in android
Similar topics on this question include only playing tone in mono where the left and right frequencies are the same.
My question is: how to generate a stereo tone such that the left channel has a ...
1
vote
4answers
678 views
Frequency detection on iPhone
One part of an app I'm currently working on will work as a tuner. I want to be able to use the iPhone to display the peak frequency of a signal given by the user. I have used the SCListener which ...
-1
votes
1answer
112 views
Increase the output a signal at different frequencies
I'm writing a C program for a micro-controller. At the moment I've already written the functions that reads from an analog-to-digital converter port on the board, and a function that can create a ...
0
votes
1answer
346 views
how to change the sound tone in C#
i'm developing an application that aims to record the voice of the user and play it in different tones ( female tone , robot tone )
i wanted to know what changes do i need to do in the sound that ...
2
votes
3answers
469 views
Parameters to improve a music frequency analyzer
I'm using a FFT on audio data to output an analyzer, like you'd see in Winamp or Windows Media Player. However the output doesn't look that great. I'm plotting using a logarithmic scale and I average ...
5
votes
4answers
723 views
Python Audio Transfer Through Lasers
I'm currently working on a project that has been relatively easy, up until now. The underlying project is to transmit data/messages over lasers using audio transformation.
In a nutshell the process is ...
1
vote
1answer
80 views
Logaritmic scale
I am programming a small syntheziser application and i input musical notes by clicking along the length of a bar. Now, the musical scale is logaritmic and my question is, how do i convert the position ...
0
votes
1answer
272 views
How to play a wav file on high frequency?
Do you have any idea on converting my wav audio data to high frequency playback.
I am creating a module that plays a melody wav file in 16-20khz frequency.
any idea?
-tong


