将wav音频文件转换为DSS音频格式

时间:2012-02-24 12:07:47

标签: java android audio wav

我正在开发一个Android中的语音听写应用程序,通过电子邮件发送录制的音频文件。并且很难发送大尺寸的wav文件,因此我正在考虑将wav文件转换为可以通过电子邮件轻松发送的适当格式。

谷歌搜索后我发现.dss文件的大小非常小,可以轻松发送,但我不知道如何将wav文件转换为dss格式。你的答案非常有帮助。

2 个答案:

答案 0 :(得分:1)

我建议使用Speex,因为它是免费的音频编解码器。 还有一个免费的java库,你应该很容易在android中使用。

http://jspeex.sourceforge.net/

此外,还有JSPeex SVN Repo,shich应该让你入门。它有一些播放器和录像机的代码示例: http://jspeex.svn.sourceforge.net/viewvc/jspeex/main/trunk/player/src/main/java/org/xiph/speex/player/

以及javadoc http://jspeex.sourceforge.net/doc/index.html

答案 1 :(得分:1)

我设置了ndk并在我的项目中使用了speex。我能够成功编码波形文件,但是当我尝试将其解码回来时,文件大小会不断增加到大尺寸。我以8000和16 BIT,MONO的采样率录制了音频。

解码代码如下:

#include <jni.h>
#include <stdio.h>
#include "speex/speex.h"

#define FRAME_SIZE 160


void Java_com_m2_iSmartDm_ISmartDMActivity_spxDec(JNIEnv * env, jobject jobj,
jstring dir1,jstring dir2)
{
const char *inFile= (*env)->GetStringUTFChars(env,dir1,0);
const char *outFile= (*env)->GetStringUTFChars(env,dir2,0);
FILE *fin;
FILE *fout;
 /*Holds the audio that will be written to file (16 bits per sample)*/
 short out[FRAME_SIZE];
 /*Speex handle samples as float, so we need an array of floats*/
 float output[FRAME_SIZE];
 char cbits[200];
 int nbBytes;
 /*Holds the state of the decoder*/
 void *state;
 /*Holds bits so they can be read and written to by the Speex routines*/
 SpeexBits bits;
int i, tmp;

/*Create a new decoder state in narrowband mode*/
 state = speex_decoder_init(&speex_nb_mode);

/*Set the perceptual enhancement on*/
tmp=1;
speex_decoder_ctl(state, SPEEX_SET_ENH, &tmp);

fin = fopen(inFile, "r");
fout=fopen(outFile,"w");

speex_bits_init(&bits);

while (1)
{
/*Read the size encoded by sampleenc, this part will likely be
different in your application*/
fread(&nbBytes, sizeof(int), 1, fin);
if (feof(stdin))
 break;

/*Read the "packet" encoded by sampleenc*/
 fread(cbits, 1, nbBytes, fin);

/*Copy the data into the bit-stream struct*/
speex_bits_read_from(&bits, cbits, nbBytes);

/*Decode the data*/
 speex_decode(state, &bits, output);

 /*Copy from float to short (16 bits) for output*/
  for (i=0;i<FRAME_SIZE;i++)
  out[i]=output[i];

 /*Write the decoded audio to file*/
  fwrite(out, sizeof(short), FRAME_SIZE, fout);

}
/*Destroy the decoder state*/
 speex_decoder_destroy(state);
/*Destroy the bit-stream truct*/
speex_bits_destroy(&bits);
fclose(fout);
fclose(fin);


}

我的代码有什么问题吗?为什么它的尺寸如此之大?