我正在开发一个为某些设备提供音频输入的应用程序。设备期望以原始音频数据流(16 位,48kHz)的形式提供音频输入。因此,无论波形文件中音频数据的格式(8 位、16 位、24 位、32 位等)如何,我都想从 WAV 文件中提取原始音频数据。我计划为此目的使用libsndFile库。我修改了 libsndfile 的 C++ 示例代码,如下所示:
#include "stdafx.h"
#include <sndfile.hh>
static void create_file (const char * fname, int format, const short* buffer,const unsigned int& len)
{
// file ;
int channels = 1 ; //A Mono wave file.
int srate = 48000 ;
printf ("Creating file named '%s'\n", fname) ;
SndfileHandle file = SndfileHandle (fname, SFM_WRITE, format, channels, srate) ;
int x = file.write (buffer, len) ;
}
static void read_file (const char * fname)
{
SndfileHandle file ;
file = SndfileHandle (fname) ;
const unsigned int uiBuffLen = file.channels() * file.frames();
short* data = new short [uiBuffLen] ;
memset(data,0x00,uiBuffLen);
int x = file.command(SFC_SET_SCALE_FLOAT_INT_READ, (void*)data, uiBuffLen);
file.read (data, uiBuffLen) ; //Read the audio data in the form of 16 bit short integer
//Now create a new wave file with audio data in the form of 16 bit short integers
create_file ("ConvertedFile.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_16,data, (const unsigned int&)uiBuffLen) ;
//Now fill a buffer containing audio data and dump it into a file so that the same can be fed to a device expecting the raw audio data
unsigned char* bytBuffer = new unsigned char[uiBuffLen*2];
memset(bytBuffer, 0x00, uiBuffLen*2);
file.readRaw(bytBuffer, uiBuffLen*2);
FILE * pFile;
pFile = fopen ("RawAudio.dat","w");
if (pFile!=NULL)
{
fwrite(bytBuffer, 1, uiBuffLen*2, pFile);
fclose (pFile);
}
delete [] data;
delete [] bytBuffer;
}
int _tmain(int argc, _TCHAR* argv[])
{
//The sample file is a Mono file containing audio data in float format.
const char * fname = "MonoWavFile.wav" ;
read_file (fname) ;
return 0;
}
好吧,上面的代码可能看起来很糟糕,但我现在只是在寻找这个想法。我使用一个文件“MonoWaveFile.wav”,它是一个单声道文件,具有 32 位浮点值形式的音频数据。我使用 libsndfile 库创建了一个新文件“ConvertedFile.wav”。该文件包含 16 位 PCM 格式的音频数据。我在媒体播放器中播放此文件,我看到转换已正确完成。
然后我创建另一个文件“RawAudio.dat”来只保存音频数据,我可以用它来将音频输入提供给设备。该文件已创建,当我将其发送到设备时,音频根本不正确。这表明我做错了什么。谁能让我知道我做错了什么?我以前从来没有做过这样的事情,所以如果我得到任何帮助,我将不胜感激。