I\'m sending some metadata to an external component whose job is to play PCM WAV files streamed over the network. The metadata consists of the foll开发者_C百科owing fields:
Is it possible to to write PCM samples to audio device under Android directly from native code? I\'ve been able to reproduce PCM samples by sending data to a socket and playing with AudioTra开发者_Sta
I have produced the FFT from the PCM wave. What is the best way to filter out 开发者_JS百科noise?
I have an audio file which is stereo. Is converting it to mono just a case of skipping every other byte (after the header)? It\'s encoded in 16bit signed PCM format. I\'ve got javax.sound.sampled avai
I have been messing around with the AudioRecord feature of the Android API and found some strange behaviors with it.
I’ve got an array of PCM data; it can be 16-bit, 24-bit packed, 32-bit, etc. It can be signed, or unsigned, and it can be 32 or 64-bit floating point. It is currently stored as a void** matrix, index
I have a problem with the this function AudioConverterConvertBuffer. Basically I want to convert from this format
I was quite surprised recently to find that the Beep( ) function in the Windows API is, as of W开发者_如何学运维indows 7 (and Visa x64?), rerouted to the sound card. I\'m currently working on a 2D vid
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 h
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...