使用C libwebsockets将音频流保存在文件中

时间:2016-05-11 05:29:46

标签: c audio libwebsockets

我有一个使用libwebsockets的C服务器,我想将收到的音频流保存在磁盘上的文件中。

这是我的代码段:

#define FILENAME        "/home/ubuntu/Desktop/file.wav"
FILE *received_file;

struct lws_context *Audiocontext;
static int callback_audio(
        struct lws *wsi,
        enum lws_callback_reasons reason,
        void *user, void *in, size_t len)
{
    switch (reason) {
        case LWS_CALLBACK_ESTABLISHED: 
        {
            printf("client is connected\n");
            received_file = fopen(FILENAME, "w+");
            if (received_file == NULL)
            {
                printf("Failed to open file\n");
                exit(EXIT_FAILURE);
            }
        }
        break;
        case LWS_CALLBACK_RECEIVE: {
            if(strcmp((char*)in,"EOS")==0)
            {
                printf("End of stream!\n");
                fclose(received_file);
            }
            else
            {
                fwrite(in, 1, len, received_file);
            }
        }
    }
}

我收到消息“客户端已连接”以及文件,但内容不正常,我无法播放。我认为使用fwrite()将文件流保存到文件的方式存在问题。

客户端正在发送编码为wav,16Khz,mono的音频块。这是客户端的一个片段(它是一个javascript客户端,完整代码在这里:http://kaljurand.github.io/dictate.js/)。

if (recorder) {
    recorder.stop();
    config.onEvent(MSG_STOP, 'Stopped recording');
    // Push the remaining audio to the server
    recorder.export16kMono(function(blob) {
        socketSend(blob);
        socketSend(TAG_END_OF_SENTENCE);
        recorder.clear();
        }, 'export16kMono');
    config.onEndOfSpeech();
} else {
    config.onError(ERR_AUDIO, "Recorder undefined");
}

客户端运行良好,我使用它完成相同的任务,但使用Java服务器。如果有人能指出我如何将这些音频块保存在有效文件中,我将不胜感激。

2 个答案:

答案 0 :(得分:0)

我认为你不在你的wav文件中写标题。为此,

  • 您可以编写一些函数来查看specification here
  • 或者你可以使用像libsndfile这样的dedicaded库,它使用起来并不复杂:

    // instead of fopen, write something like
    SF_INFO info;
    SNDFILE * sf;
    
    info.samplerate = sample_rate;
    info.channels = 1;
    info.sections = 1;
    info.seekable = 0;
    info.frames = 0;
    info.format = SF_FORMAT_WAV | SF_FORMAT_PCM_16;
    
    sf = sf_open(filename, SFM_WRITE, &info);
    
    // instead of fwrite, something like
    sf_write_short(sf, in, len / sizeof(short));
    
    // and instead of fclose
    sf_close(sf);
    

答案 1 :(得分:0)

我没有使用libsndfile,但是我在客户端改变了一些东西。这是当前的hexdump输出:

00000000  52 49 46 46 20 60 00 00  57 41 56 45 66 6d 74 20  |RIFF `..WAVEfmt |
00000010  10 00 00 00 01 00 02 00  44 ac 00 00 10 b1 02 00  |........D.......|
00000020  04 00 10 00 64 61 74 61  00 60 00 00 00 00 00 00  |....data.`......|
00000030  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00006020  00 00 00 00 00 00 00 00  00 00 00 00 52 49 46 46  |............RIFF|
00006030  20 60 00 00 57 41 56 45  66 6d 74 20 10 00 00 00  | `..WAVEfmt ....|
00006040  01 00 02 00 44 ac 00 00  10 b1 02 00 04 00 10 00  |....D...........|
00006050  64 61 74 61 00 60 00 00  00 00 00 00 00 00 00 00  |data.`..........|
00006060  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
0000c050  00 00 00 00 00 00 00 00  52 49 46 46 20 60 00 00  |........RIFF `..|
0000c060  57 41 56 45 66 6d 74 20  10 00 00 00 01 00 02 00  |WAVEfmt ........|
0000c070  44 ac 00 00 10 b1 02 00  04 00 10 00 64 61 74 61  |D...........data|
0000c080  00 60 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |.`..............|
0000c090  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*

似乎是wav编码,但我没有内容。