2012-03-15 7 views
0

私は正常にコンパイルされましたlibavcodecspeexが有効です。 サンプルオーディオをSpeexにエンコードするために、FFMPEG docsのサンプルを変更しました。 しかし、結果ファイルはVLC Player(これはSpeexデコーダがあります)で再生することはできません。libavcodec(FFMpeg)でSpeexをエンコードしますか?

ヒント?

static void audio_encode_example(const char *filename) 
{ 
    AVCodec *codec; 
    AVCodecContext *c= NULL; 
    int frame_size, i, j, out_size, outbuf_size; 
    FILE *f; 
    short *samples; 
    float t, tincr; 
    uint8_t *outbuf; 

    printf("Audio encoding\n"); 

    /* find the MP2 encoder */ 
    codec = avcodec_find_encoder(CODEC_ID_SPEEX); 
    if (!codec) { 
     fprintf(stderr, "codec not found\n"); 
     exit(1); 
    } 

    c= avcodec_alloc_context(); 

    /* put sample parameters */ 
    c->bit_rate = 64000; 
    c->sample_rate = 32000; 
    c->channels = 2; 
    c->sample_fmt=AV_SAMPLE_FMT_S16; 

    /* open it */ 
    if (avcodec_open(c, codec) < 0) { 
     fprintf(stderr, "could not open codec\n"); 
     exit(1); 
    } 

    /* the codec gives us the frame size, in samples */ 
    frame_size = c->frame_size; 
    printf("frame size %d\n",frame_size); 
    samples =(short*) malloc(frame_size * 2 * c->channels); 
    outbuf_size = 10000; 
    outbuf =(uint8_t*) malloc(outbuf_size); 

    f = fopen(filename, "wb"); 
    if (!f) { 
     fprintf(stderr, "could not open %s\n", filename); 
     exit(1); 
    } 

    /* encode a single tone sound */ 
    t = 0; 
    tincr = 2 * M_PI * 440.0/c->sample_rate; 
    for(i=0;i<200;i++) { 
     for(j=0;j<frame_size;j++) { 
      samples[2*j] = (int)(sin(t) * 10000); 
      samples[2*j+1] = samples[2*j]; 
      t += tincr; 
     } 
     /* encode the samples */ 
     out_size = avcodec_encode_audio(c, outbuf, outbuf_size, samples); 
     fwrite(outbuf, 1, out_size, f); 
    } 
    fclose(f); 
    free(outbuf); 
    free(samples); 
    avcodec_close(c); 
    av_free(c); 
} 

int main(int argc, char **argv) 
{ 

    avcodec_register_all(); 

    audio_encode_example(argv[1]); 

    return 0; 
} 

答えて

1

Speex(私には分かりません)は、これらのフレームが置かれているコンテナフォーマットを必要としますか?エンコーダーの出力を取り込んで、書式設定を行わずにファイルにダンプするだけです(libavformat)。

ffmpegコマンドラインユーティリティを使用して同じデータをSpeexにエンコードし、結果のファイルが再生されるかどうかを確認してください。

私はwww.speex.orgでいくつかの情報を見ていて、それは.oggファイルにspeexのデータが入っているようです。使用しているプレイヤーは生のSpeexデータを認識できない場合がありますが、これは.oggにラップされている場合のみです。

100%明確な答えではありませんが、これはいくつかの助けになると思います!

+0

私はCODEC_ID_MP2を使用しました。結果ファイルにはコンテナは必要ありませんでした。私はOGGコンテナを使用しようとします。 –

関連する問題