使用LAME时,单击开头的声音

san*_*o21 6 lame

我正在使用LAME将WAV文件(从音频CD中提取)转换为MP3.转换结果很好,除了在文件的最开头有一个单击"咔嗒"声.在歌曲本身之前,点击几乎需要0.5秒.

char *input_file = argv[1];
char *output_file = argv[2];

FILE *pcm = fopen(input_file, "rb");
FILE *mp3 = fopen(output_file, "wb+");

size_t nread;
int ret, nwrite;

const int PCM_SIZE = 1152;
const int MP3_SIZE = 1152;

short pcm_buffer[PCM_SIZE * 2];
unsigned char mp3_buffer[MP3_SIZE];

lame_t lame = lame_init();

// Can not put these lines at the end of conversion
id3tag_set_title(lame, "Still reminds me");
id3tag_set_artist(lame, "Anggun");

lame_set_VBR(lame, vbr_mt);
lame_set_VBR_quality(lame, 2);

ret = lame_init_params(lame);

do {
    nread = fread(pcm_buffer, sizeof(short), PCM_SIZE * 2, pcm);

    if (nread != 0) {
        // Is this the cause of the single click?
        int nsamples = nread / 2;
        short buffer_l[nsamples];
        short buffer_r[nsamples];

        int j = 0;
        int i = 0;
        for (i = 0; i < nsamples; i++) {
            buffer_l[i] = pcm_buffer[j++];
            buffer_r[i] = pcm_buffer[j++];

        }

        nwrite = lame_encode_buffer(lame, buffer_l, buffer_r, nsamples,
                mp3_buffer, MP3_SIZE);

    } else {
        nwrite = lame_encode_flush(lame, mp3_buffer, MP3_SIZE);

    }

    fwrite(mp3_buffer, nwrite, 1, mp3);
} while (nread != 0);


lame_close(lame);

fclose(mp3);
fclose(pcm);
Run Code Online (Sandbox Code Playgroud)

这是怎么回事?我在这里想念什么?

ewr*_*son 7

不确定你是否还在寻找Dave L'以外的答案,但点击噪音来自LAME意外编码音频文件中的标题.根据您生成的WAV文件,标头可能是44个字节.转换我录制的PCM文件时遇到了类似的问题,但在我的情况下,这些标题是4096字节.如果它是一个真正的wav文件(因此有44字节标题),只需使用

fseek(pcm,44,0);
Run Code Online (Sandbox Code Playgroud)

在你打开文件后跳过标题的东西.我还建议在其中一个WAV文件上使用Hex编辑器来验证标题的大小.

一旦我跳过它(再次,我的标题是4096b),点击噪音消失了.


小智 3

解决这个问题有运气吗?

\n\n

我遇到了类似的问题,我尝试在写入输出文件时跳过前 1024 个字节(即,在开始将 LAME 的输出写入输出文件之前,I\xe2\x80\x99m 只是丢弃这些字节)。这消除了录制开始时的 \xe2\x80\x9cclick\xe2\x80\x9d 但它 \xe2\x80\x99s 有点黑客,但似乎工作正常。

\n