Tagged Questions
The pcm tag has no wiki summary.
8
votes
9answers
6k views
Downsampling and applying a lowpass filter to digital audio
I've got a 44Khz audio stream from a CD, represented as an array of 16 bit PCM samples. I'd like to cut it down to an 11KHz stream. How do I do that? From my days of engineering class many years ...
7
votes
1answer
642 views
Void* array casting to float, int32, int16, etc
I've got an array of PCM data, it could be 16 bit, 24 bit packed, 32 bit, etc.. It could be signed, or unsigned, and it could be 32 or 64 bit floating point. It is currently stored as a "void**" ...
6
votes
1answer
414 views
How to get frequency from fft result?
I have recorded an array[1024] of data from my mic on my Android phone, passed it through a 1D forward DFT of the real data (setting a further 1024 bits to 0). I saved the array to a text file, and ...
6
votes
1answer
577 views
Lightweight open source software synth library on pure C (possibly C++). PCM.?
Are there any portable open source libraries that support sample-based synthesis and encapsulate producing and mixing simple PCMs?
I really need something minimalistic and decoupled from operating ...
6
votes
4answers
3k views
Pure C# open source PCM to Mp3 convertor?
Microsoft Silverlight 4 is in beta. It supports PCM audio output. It would be madness to stream PCM over internet (for ex in P2P chart webApp) so we need Pure C# open source PCM to Mp3 convertor. No ...
5
votes
5answers
3k views
Silverlight 4 - encoding PCM data from the microphone
I've written a basic SL4 application to capture audio data from the microphone using CaptureSource. The trouble is, it's raw PCM output - which means huge and uncompressed.
Given that I need this ...
5
votes
1answer
713 views
Pure C# open source PCM to Ogg convertor?
Microsoft Silverlight 4 is in beta. It supports PCM audio output. It would be madness to stream PCM over internet (for ex in P2P chart webApp) so we need Pure C# open source PCM to Ogg convertor. No ...
4
votes
0answers
193 views
Android PCM to Ulaw encoding wav file
I'm trying to encode raw pcm data as uLaw to save on the bandwidth required to transmit speech data.
I have come across a class called UlawEncoderInputStream on This page but there is no ...
4
votes
1answer
346 views
Notification message from AudioTrack stream
I've implemented a PCM decoder that writes to an AudioTrack object.
Everything seems great, however, I need to get some sort of notification from the AudioTrack object when the last written chunk ...
4
votes
1answer
2k views
Difficulty porting raw PCM output code from Java to Android AudioTrack API
I'm attempting to port an application that plays chiptunes (NSF, SPC, etc) music files from Java SE to Android. The Android API seems to lack the javax multimedia classes that this application uses to ...
4
votes
1answer
5k views
Android AudioRecord and AudioTrack codec options?
I currently use the AudioTrack and AudioRecord classes in Android.
I use the pure PCM data but I was wondering what my options are for other codecs?
From this page it seems I can only encode and ...
3
votes
1answer
258 views
Play generated PCM data in real time
I'm developing a digital audio synthesizer on a dsPIC.
To begin with Im writing and testing the algorithms in matlab.
For the second phase Im translating the algorithms into ANSI C (MinGW ...
3
votes
4answers
986 views
PCM audio amplitude values?
I am starting out with audio recording using my Android smartphone.
I successfully saved voice recordings to a PCM file. When I parse the data and print out the signed, 16-bit values, I can create a ...
3
votes
1answer
3k views
Can ffmpeg convert audio to raw PCM? If so, how?
I'm currently using ffmpeg to convert FLV/Speex to WAV/pcm_s16le, successfully. However, I now need the output format to be RAW, that is, PCM signed 16-bit little endian, without the WAV header. I ...
3
votes
3answers
3k views
Extract iPod Library raw PCM samples and play with sound effects
I am trying to extract raw PCM samples from an MP3 in the iPod Library so that I can play the song and manipulate the pitch, tempo, and apply sound effects (such as filters). I have already gone down ...
3
votes
2answers
3k views
Creating a WAV file from raw PCM data using the Android SDK
I'm trying to use the AudioRecord class to record a WAV file. The problem is that it only supplies the raw PCM data, and if I write it to a file, there is no header information, so it will not play in ...
3
votes
1answer
1k views
Extracting audio channel from Linear PCM
I would like to extract a channel audio from the an LPCM raw file ie extract left and right channel of a stereo LPCM file. The LPCM is 16 bit depth,interleaved, 2 channels,litle endian. From what I ...
3
votes
1answer
387 views
Android MediaPlayer causes game to freeze with “AudioHardware pcm playback is going to standby”
This is a tough one :/
I'm making a music-based Android game a la Audiosurf. It works all nice except a few seconds before end of a song (that is being played with a normal MediaPlayer) the music ...
2
votes
2answers
558 views
Android AudioTrack playing .wav file, getting only white noise
When I play a file with the following code:
private void PlayAudioFileViaAudioTrack(int ResId) throws IOException {
int intSize = android.media.AudioTrack.getMinBufferSize(11025, ...
2
votes
2answers
114 views
Swap endian in pcm audio
I've made simply program to swap endian in PCM audio (2 channels, 48kHz, 24 bit), but only one channel is swapped correctly, second one is still little Endian (i've checked generated output in ...
2
votes
1answer
205 views
How to play raw pcm data in iphone sdk
This is karthik. I am developing an application for voice chat. Now I want to play raw pcm audio data in iphone. I could not achieve it. Can anyone help me to play pcm data?
2
votes
1answer
177 views
C# PCM data audio player for Silverlight 5
Is there a way in SilverLight 5 to play PCM data? This could be obtained from a stream from a web Server or obtained by reading a WAV file.
Any help would be greatly appreciated.
2
votes
1answer
778 views
Get Iphone Mp3 frequency from AvassetReader and vDSP_FFT
I'm trying to get frequency from iphone / ipod music library for an spectrum app on ipod library, helping myself with reading-audio-samples-via-avassetreader to get audio samples and then with ...
2
votes
1answer
700 views
Convert 16 bit pcm to 8 bit
I have pcm audio stored in a byte array. It is 16 bits per sample. I want to make it 8 bit per sample audio.
Can anyone suggest a good algorithm to do that?
I haven't mentioned the bitrate because ...
2
votes
2answers
736 views
AudioRecord PCM data of no use?
I have recorded using the Mic in my android app and this plays perfectly well when using the AudioPlayer class having streamed the data in. My problem is I want to append a wav header to this data so ...
2
votes
2answers
1k views
Correct way to Convert 16bit PCM Wave data to float
I have a wave file in 16bit PCM form. I've got the raw data in a byte[] and a method for extracting samples, and I need them in float format, i.e. a float[] to do a Fourier Transform. Here's my code, ...
2
votes
3answers
618 views
Convert signed int (2bytes, 16 bits) in double format. With Java
I've got a problem.
In Java I need to read samples from a wav file.
The file format is: wav, PCM_SIGNED, signed int of 2bytes = 16bits, little endian...
The object reads the audio samples in BYTES ...
2
votes
1answer
1k views
Determine Number of Frames in a Core Audio AudioBuffer
I am trying to access the raw data for an audio file on the iPhone/iPad. I have the following code which is a basic start down the path I need. However I am stumped at what to do once I have an ...
2
votes
1answer
1k views
How to record live audio into file from microphone with openAL? (C++ code inside)
I have such code for doing echo of microphone with openAL on windows.
I want to create some CapturedAudioData file to write all audio data captured during the loop. So its going to be like ...
2
votes
1answer
424 views
android playback suddenly stopping
I have an app that is streaming audio content and sometimes it just
stops all of the suddent.
the logcat windows shows --
AudioHardware pcm playback is going to standby
and that's it.
I saw on ...
2
votes
3answers
481 views
detecting pauses in a spoken word audio file using pymad, pcm, vad, etc
First I am going to broadly state what I'm trying to do and ask for advice. Then I will explain my current approach and ask for answers to my current problems.
Problem
I have an MP3 file of a ...
2
votes
3answers
752 views
How to get PCM data from microphone in C++ (os Windows)?
I need to capture PCM data from microphone in C++.
I'm a beginner.
How to do it?
2
votes
1answer
621 views
Where to get simple opensource adpcm C\C++ encoder lib?
Where to get simple opensource pcm to adpcm C\C++ encoder lib?
2
votes
2answers
519 views
How to write mp3 frames from PCM data (C/C++)?
How to write mp3 frames (not full mp3 files with ID3 etc) from PCM data?
I have something like PCM data (for ex 100mb) I want to create an array of mp3 frames from that data. How to perform such ...
2
votes
2answers
324 views
C\C++ open source PCM to Mp3 convertor?
C\C++ open source PCM to Mp3 convertor/encoder?
What do I need
Open Source Libs/wrappers for encoding/decoding.
Tutorials and blog articles on How to do it, about etc.
2
votes
1answer
2k views
Decode WMA with FFMpeg to PCM
I want to decode a WMA stream to 16 Bit PCM. Now i have a Question concerning FFMpeg- what is the output format of ..
len = avcodec_decode_audio2(c, (int16_t *)outbuf, &outbuf_used, inbuf_ptr, ...
2
votes
2answers
1k views
PCM Data Pitch Change in C#
I have a program that downloads PCM data from a Web Server, which it uses later to play through a standard PCM player. I want to be able to allow users to change the pitch of the PCM data while its ...
2
votes
4answers
3k views
Audio output from Silverlight
I'm looking to develop a Silverlight application which will take a stream of data (not an audio stream as such) from a web server.
The data stream would then be manipulated to give audio of a certain ...
2
votes
5answers
1k views
Lossy compressed format to raw PCM on iPhone
I want to start with an audio file of a modest filesize, and finish with an array of unsigned chars that can be loaded into OpenAL with alBufferData. My trouble is the steps that happen in the middle.
...
1
vote
1answer
29 views
libao example doesn't work when compiled as python module
I was trying to PCM sound a little bit in Python, but all the packages I've tried were too much or were undocumented or dead, so I decided to make a simple one with libao.
I used as start point this ...
1
vote
0answers
51 views
Encode wav to AAC on Android
You can use MediaRecorder to record a stream directly to AAC but there doesn't seem to be a way to encode an existing PCM/WAV file to AAC. The ability to encode to AAC exists natively in Android and ...
1
vote
1answer
75 views
PCM voice data on serial port to sound device conversion in linux
I have a telephony modem which gives voice to my interfaced application via a serial USB ttyUSB0 in 16bit PCM 8000hz. Iam able to capture this data and play with audacity.I want this port to be ...
1
vote
1answer
80 views
How to capture voice PCM data over a serial port and process?
I have a telephony modem (SIM5320EVB) which gives voice data on ttyUSB0 as PCM with 1600 bytes each 100ms.Iam able to see the data on minicom. How to capture the PCM data in linux (i use ubuntu)and ...
1
vote
2answers
50 views
Playing raw PCM held in an array with GStreamer
I am working in C++ with ogg/vorbis
I have an array with raw PCM data decoded from a vorbis file (.ogg). The .ogg file has been decoded using libvorbis using vorbis_synthesis_pcmout. This fills a ...
1
vote
1answer
87 views
play live socket stream's PCM raw data using Flash
I've been searching a lot about the ability of flash to play RAW PCM audio data, since I have RAW PCM audio as ByteArray, I'm just thinking if flash can actually play it, some article says yes, some ...
1
vote
3answers
313 views
How can I get frequency data from PCM using FFT
I have an array of audio data I am passing to a reader:
recorder.read(audioData,0,bufferSize);
The instantiation is as follows:
AudioRecord recorder;
short[] audioData;
int bufferSize;
int ...
1
vote
0answers
58 views
Recording an AudioTrack to a sound file
I am creating PCM data (from sine waves) and piping them to the speakers using AudioTrack.
I'd like to record this as a wav file (or a comparable format). I've looked at AudioRecord but it takes a ...
1
vote
0answers
153 views
AudioTrack no sound with tone generation
I'm trying to get Android's AudioTrack play a squarewave with the following code
public Synthesizer() {
bufferSize = android.media.AudioTrack.getMinBufferSize(44100, ...
1
vote
1answer
74 views
How can I read info from .wave file using JavaSound (Java, Java Sound)
Hi I need to read SampleRate, SignalFrequency and Amplitude from .wave file. How can I do that using JavaSound?
1
vote
1answer
447 views
converting PCM-16 to AMR using AmrInputStream
I'm doing a conversion from PCM-16 to AMR using AmrInputStream. The details for the AmrInputStream can be found here http://hi-android.info/src/android/media/AmrInputStream.java.html
I'm quite new to ...