用脚编码音频:将 32 位浮点数转换为 mp3
Posted
技术标签:
【中文标题】用脚编码音频:将 32 位浮点数转换为 mp3【英文标题】:Encoding Audio with lame: Converting 32bit float to mp3 【发布时间】:2014-11-10 02:35:29 【问题描述】:我在使用 lame 将 32 位浮点音频转换为 mp3 时遇到了困难。我目前能够将音频转换为 mp3,但输出具有均匀间隔的间隙,看起来像是插入到正确的输出之间(没有丢失任何预期的输出)。
下面是 Audacity 中输出音频的时间线图像
下面是我正在使用的代码:
#include <stdio.h>
#include <lame/lame.h>
int main(void)
int read, write;
FILE *pcm = fopen("file.pcm", "rb");
FILE *mp3 = fopen("file.mp3", "wb");
const int PCM_SIZE = 10000;
const int MP3_SIZE = 10000;
unsigned char mp3_buffer[MP3_SIZE];
float pcm_buffer[PCM_SIZE*2];
lame_t lame = lame_init();
lame_set_in_samplerate(lame, (48000/2)); //The sampling rate of the input file is 48MHz
//but the output sounds like its on fast-forward when input sample rate is set to 48MHz
lame_set_VBR(lame, vbr_off); // also tried vbr_default
lame_set_out_samplerate(lame, 16000);
lame_init_params(lame);
do
read = fread(pcm_buffer, sizeof(float), PCM_SIZE, pcm);
printf("read = %d\n",read);
if (read == 0)
write = lame_encode_flush(lame, mp3_buffer, MP3_SIZE);
else
write = lame_encode_buffer_interleaved_ieee_float(lame, pcm_buffer, read, mp3_buffer, MP3_SIZE);
fwrite(mp3_buffer, write, 1, mp3);
while (read != 0);
lame_close(lame);
fclose(mp3);
fclose(pcm);
return 0;
【问题讨论】:
【参考方案1】:我得到它的工作,我只需要从使用 lame_encode_buffer_interleaved_ieee_float
更改为使用 lame_encode_buffer_ieee_float
函数
【讨论】:
以上是关于用脚编码音频:将 32 位浮点数转换为 mp3的主要内容,如果未能解决你的问题,请参考以下文章
将一个 32 位浮点数转换为两个 16 位 uint 数,然后再次转换回该 32 位浮点数
[libmpg123强制浮点输出,当我使用整数编码读取mp3时