1
vote
1answer
54 views
Remove 1000Hz tone from FFT array in C
I have an array of doubles which is the result of the FFT applied on an array, that contains the audio data of a Wav audio file in which i have added a 1000Hz tone.
I obtained this array thought the ...
0
votes
0answers
63 views
+50
Convert PCM to FLAC?
I am using a Raspberry Pi (Debian Linux) to record audio with the ALSA library. The recording works fine, but I need to encode the input audio into the FLAC codec.
This is where I get lost. I have ...
0
votes
1answer
29 views
How do you print silence in an audio file with libsndfile?
I'm doing some simple simple programs with libsndfile and currently and trying to find a way to print silence in an audio file- other than muting the out of another file. Ostensibly, I'm making a drum ...
0
votes
0answers
23 views
Audio CD reading library C/C++ [closed]
I need a library which can read audio CS's especially the .cdf format.I considered GNUs libcdio, bt the problem is with its licence ,I require some good library with an LGPL licence. I'll be giving ...
0
votes
1answer
78 views
The “Perfect” lowpass filter [closed]
I want to code a "perfect" lpf in C. To me "perfect" means that it mutes ALL high frequency harmonics beyond a certain point. To do this I need to calculate a soft slope even when there is a rapid ...
0
votes
1answer
62 views
Add 1000Hz noise to wav file through the FFT in C
I have an array of integers (int_16) that contains all audio data of a Wav file.
Now i would like to obtain its "frequency domain" representation and add a 1000Hz noise.
I have read a lot of math but ...
2
votes
2answers
68 views
encode binary to audio python or C
using C or python (python preferred), How would i encode a binary file to audio that is then outputted though the headphone jack, also how would i decode the audio back to binary using input from the ...
0
votes
1answer
58 views
Reduce the volume of a Wav audio file using C
I am writing a C program for editing a Wav audio file.
I have loaded all file datas in an array of unsigned integer values (UINT16_T).
Now, i would like to reduce the volume of the file.
I thought it ...
3
votes
1answer
55 views
FM synthesis using phase accumulator
I'm attempting to implement an FM synthesis operator with feedback using a phase accumulator in C. In Tomisawa's original patent, the phase accumulator going into the adder counts over both negative ...
0
votes
0answers
77 views
Load wav audio file in memory in C
i have a wave file (mono, 16bit), and i have to write a program in C that fills an array with its content. (Not only the header informations)
I can't use libraries, i must write it from scratch.
I ...
0
votes
1answer
56 views
How to access to L and R channel samples of stereo audio file separately?
Suppose I have 8-bits (mono and stereo) .wav files.
When processing of this file I have to declare pointer to array of samples.
There is difference between conception of mono and stereo files:
there ...
2
votes
1answer
62 views
Sound Analysis Libraries?
I'm interested in learning about audio visualization with shaders. I want to make an application that can do visualizations from audio.
I'm looking for a library that can give me data about the audio ...
0
votes
1answer
30 views
Left and Right audio channels are exchanging
I am trying to write an application for capturing stereo audio. My audio input has two channels(Stereo). I am writing this audio data into a wav file. Some times these audio channels are exchanging ...
2
votes
3answers
61 views
audio delay making it work
I am trying to implement a simple audio delay in C.
i previously made a test delay program which operated on a printed sinewave and worked effectively.
I tried incorporating my delay as the process in ...
1
vote
3answers
47 views
App crashes though I can't understand the reason [closed]
The input file is in.wav. I have to read chunks (succeeded) and to read samples to normalize the audio file...
The problem is that it crashes while trying to fing the max and min values of .wav ...
0
votes
3answers
71 views
Obtaining real values from a WAV file c++
So I'm working on a very importan school project. I know now how to read everything from a WAVE file, including the data. The thing is that not only I need the real~ data values, but the sign as well. ...
2
votes
1answer
75 views
Trying to figure out Core Audio's NBandEQ
So I am trying to figure out the ill documented NBandEQ that Apple added in iOS 5. I am able to get it to work great for anything under 16 bands but I want more :) What happens is that if I make it a ...
1
vote
0answers
58 views
gcc -nostdlib causes segmentation fault within SDL_OpenAudio()
When I compile the following code with gcc -nostartfiles or -nostdlib, running the resulting Program causes a crash deep within the Audio system, when SDL_OpenAudio() is called. Without this call ...
3
votes
3answers
232 views
Continuous recording in PortAudio (from mic or output)
I am trying to create a music visualizer application in PortAudio, I did some basic research and found some examples on how to record from a mic to a (temporary) file. But there was no example where ...
2
votes
2answers
71 views
Solaris audio API
How to write a c function to record and play voice on Solaris. Which api usually used to play and record voice in Solaris like we have the WaveIn/WaveOut APIs in Windows.
1
vote
1answer
188 views
C: playing audio loops in linux
I have a buffer of int16_t with some audio PCM data in it. I need to play the buffer repetitively from a point a to a point b, so that you hear an infinite audio loop.
I found that the easiest way to ...
0
votes
2answers
114 views
Initializing PortAudio: Host error
I am trying to create a PortAudio application on Debian Wheezy 64 bit GNU/Linux. I read the documentation on how to do add the library and it compiles without errors.
Now when I want to initialize ...
0
votes
1answer
71 views
VAD to switch from listen mode to speak mode
I am attempting to turn my four-wire apartment buzzer into a VOIP phone using a raspberry pi and a custom circuit. The problem is that two way communication is not supported. I can either be listening ...
0
votes
1answer
78 views
Reading ringtone file from native code on Android
I've been working on an app that requires me to play the appropriate ringtone from native code. Till now i found no solution for my problem. Is there any known ways to get the ringtone bytes to decode ...
0
votes
1answer
141 views
PulseAudio API - No Microphone Signal
I'm trying to capture a microphone signal in "real-time" using PulseAudio. The program is written in C and uses the PulseAudio Simple API for that. Unfortunately my requested audio buffer does not ...
0
votes
1answer
83 views
System Sound plays very quietly over speakers - C, Objective-C
I'm using AudioServicesPlaySystemSound in Objective-C to play my sound effects. They play perfectly loud on simulator and on my iPad's speakers, but when I plug an audio cord from my iPad into a ...
0
votes
2answers
352 views
16Bit Little Endian Byte Array to Integer Array to Decibel Value
I'm using the PulseAudio API to get the current microphone input in "realtime".
The buffer data is being delivered as a 16bit little endian byte array. What I'd like to do is to find out the maximum ...
2
votes
1answer
190 views
how to open an mp3 file with c
I'm having some troubles with this "simple" program that im trying to build.
My goal is to create a C program which executes an mp3 sound file saying "Hello" and runs at Windows startup.
...
0
votes
0answers
27 views
Where to get sc110wav.h? [closed]
I needed to know from where I can get sc110wav.h file for audio processing of .wav files in C.
I would highly appreciate it, Thanks in advance :)
3
votes
1answer
56 views
Changing the play back rate of a buffer in C?
I am using an Altera DE2 FPGA board and playing around with the SD card port and audio Line Out. I'm programming in VHDL and C, but the C portion is where I'm stuck due to lack of ...
3
votes
1answer
149 views
How to mute / unmute BASS?
How can i mute and unmute BASS playback (platform independend)? Until now i save the current volume before muting, set volume to 0 and set it back if unmute.
Example:
part of my C++ class
volume_t ...
0
votes
0answers
72 views
ALSA : snd_pcm_readn need constant read delay
How to achieve constant read delay from snd_pcm_readn() ? I tried (144 frames read, for 4 channel mic, 8000Hz).
What I expect is 18 millisecond read delay for each call to snd_pcm_readn() :
18ms, ...
0
votes
1answer
195 views
Playing multiple wav files using ALSA in C with different volumes
I need to play more than 2 wav files using ALSA library C interface. Each file should be played with different volumes but it should be possible to play them simultaneously. I am using embedded linux ...
1
vote
1answer
81 views
SDL_Mixer set sound position
I was wondering if there is a functionality in the SDL_Mixer lib to skip to a certain position in a wav file. I've found out the there is a function called Mix_SetMusicPosition but it won't work with ...
2
votes
2answers
112 views
Remove channels from PCM
I have extended "libtinyalsa" (a very small version of ALSA) with a method to resample in- & outgoing PCM-audio (with libresample, e.g. from 48 kHz to 44.1 kHz).
Now I would like to extend it ...
1
vote
2answers
1k views
ALSA: Ways to prevent underrun for speaker
I am playing a single channel audio in non-interleaved mode. I am getting underrun when I am writing aduio data into speaker : ALSA lib pcm.c:7339:(snd_pcm_recover) underrun occurred
Here is how I ...
2
votes
1answer
165 views
ALSA: How can I send audio through both headphone and speaker
I need to control the audio output device at run time :
1) Main Speaker only
2) Headphone Only
3) Headphone + Main Speaker both together
My application take run time decision to switch among above ...
0
votes
1answer
146 views
ALSA: What API for headphone jack sense?
Can I detect insertion and removal of headset using alsa API ? Which API should I use ? My kernel is 3.0 Linux running on ARM.
2
votes
1answer
498 views
ffmpeg transcode
I want to do a audio trancode using ffmpeg library. Now i have out file but I can listen only noise .
The steps of my program are:
1) Open input file and decode in raw format using ...
1
vote
2answers
248 views
ALSA Api: How to play two wave files simultaneously?
What is the required API configuration/call for playing two independent wavefiles overlapped ?
I tried to do so , I am getting resource busy error. Some pointers to solve the problem will be very ...
-1
votes
2answers
181 views
C Language Audio Input/Output [closed]
I've already searched for ways to capture/play audio with C Language, but I haven't found anything useful. Is there such a way to do this, or I'll have to use another language like C++, C# or Java?
0
votes
0answers
89 views
libfaac encoding weird output
I'm trying to encode a 16-bit RAW PCM file to MPEG-4 MAIN AAC File using libfaac in my C program.I don't know what i'm doing wrong so i get 2 times longer file and in audacity when i record silence it ...
0
votes
2answers
375 views
An algorithm to detect a certain frequency? [closed]
Using Goertzel algorithm I am detecting a certain frequency that goes into the iphone microphone (I use buffer samples).
Its working, but it has many strange stability problems when values are ...
1
vote
1answer
111 views
Can an OpenAL device be queried about what frequency and format it prefers?
From The OpenAL Programmers Guide:
void alBufferData(
ALuint buffer,
ALenum format,
const ALvoid *data,
ALsizei size,
ALsizei freq
);
Can an OpenAL device be queried about what ...
1
vote
1answer
119 views
Merging MIDI and Wav files
I want to be able to merge multiple midi files and wav files and produce single wav or mp3 file in Python or C. Is there a library that does this? Do I have to first convert MIDI to wav and then merge ...
4
votes
1answer
151 views
How to avoid audio sample 16bit clipping after equalization?
I have samples which come from ffmpeg, very often it is 16 bit samples (short type), i have used iir band pass filter with dbGain as described here, after filtering i sometimes got a short type ...
2
votes
2answers
229 views
Coverting PCM 16bit LE to WAV
I'm trying to write a program in C that converts a captured Raw 16kHz PCM 16-bit file to a 16-bit WAV.
I've read some posts and people recommended using libsox. Installed it and now i'm really ...
0
votes
2answers
120 views
Proccessing “JACK audio” data with C?
My question is slightly abstract but with good grounds. I have successfully ran a JACK script written in C that loops the microphone audio data to the speaker, However I would like to know how to ...
0
votes
1answer
74 views
Doing a JACK programming test I get the response: usage: jack_simple_client
I got this code to successfully compile
http://dis-dot-dat.net/index.cgi?item=jacktuts/starting/wholesimple
How ever when I run it it tells me the following
usage: jack_simple_client
So I'm ...
1
vote
1answer
216 views
C array with float data crashing in Objective C class (EXC_BAD_ACCESS)
I am doing some audio processing and therefore mixing some C and Objective C. I have set up a class that handles my OpenAL interface and my audio processing. I have changed the class suffix to
.mm
...





