FFmpeg,PCM转MP3,编码器为空是怎么回事,求大哥们教我
/**
* 音频编码
* @param path PCM文件地址
* @param out 输出MP3文件地址
*/
void encoderAudio(const char* path,const char* out){
//注册输入输出组件
av_register_all();
//第二步:打开输入音频文件
//封装格式上下文
AVFormatContext *av_fm_ctx = avformat_alloc_context();
//输出流
AVOutputFormat* ouput_format = av_guess_format(NULL,out,NULL);
av_fm_ctx->oformat = ouput_format;
//打开输出文件
if (avio_open(&av_fm_ctx->pb,out, AVIO_FLAG_READ_WRITE) < 0){
LOG_I("Failed to open output file!\n");
return;
}
AVStream* avStream = avformat_new_stream(av_fm_ctx, 0);
if (avStream==NULL){
LOG_I("avStream获取失败");
return ;
}
AVCodecParameters* av_codec_parameters = avStream->codecpar;
av_codec_parameters->codec_id = ouput_format->audio_codec;
av_codec_parameters->codec_type = AVMEDIA_TYPE_AUDIO;
av_codec_parameters->format = AV_SAMPLE_FMT_S16;
av_codec_parameters->sample_rate= MAX_AUDIO_FRAME_SIZE;
av_codec_parameters->channel_layout=AV_CH_LAYOUT_STEREO;
av_codec_parameters->channels = av_get_channel_layout_nb_channels(av_codec_parameters->channel_layout);
av_codec_parameters->bit_rate = 64000;
//打印有关输入或输出格式的详细信息
av_dump_format(av_fm_ctx, 0, out, 1);
//4.获取编码器(根据编码器的ID,找到对应的编码器)
AVCodec *av_codec = avcodec_find_encoder(av_codec_parameters->codec_id);
if(av_codec==NULL){
LOG_I("编码器生成为空:");
return;
}
//打开编码器
AVCodecContext *av_codec_ctx = avcodec_alloc_context3(av_codec);
//根据所提供的编码器的值填充编译码上下文
int avcodec_to_context = avcodec_parameters_to_context(av_codec_ctx,av_codec_parameters);
if(avcodec_to_context < 0){
LOG_I("编码器上下文填充失败");
return;
}
//打开编码器
int av_codec_open_result = avcodec_open2(av_codec_ctx, av_codec, NULL);
if (av_codec_open_result < 0) {
LOG_I("编码器打开失败!");
return;
}
FILE *pcm_file = fopen(path,"rb");
if(pcm_file==NULL){
LOG_I("文件打开失败");
return;
}
//保存一帧读取的压缩数据-(提供缓冲区)
AVPacket *packet = (AVPacket *) av_malloc(sizeof(AVPacket));
//Write Header
avformat_write_header(av_fm_ctx,NULL);
//编码写入数据
int ret;
while(fread(packet, 1, (size_t)packet->size, pcm_file)){
//发送数据包
avcodec_send_packet(av_codec_ctx, packet);
//接收数据包
ret = avcodec_receive_packet(av_codec_ctx,packet);
if(ret == 0){
packet->stream_index = avStream->index;
av_write_frame(av_fm_ctx, packet);
}
}
fclose(pcm_file);
av_write_trailer(av_fm_ctx);
avcodec_close(av_codec_ctx);
avformat_free_context(av_fm_ctx);
avcodec_free_context(&av_codec_ctx);
avcodec_parameters_free(&av_codec_parameters);
av_packet_free(&packet);
av_freep(ouput_format);
av_freep(avStream);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能是忘记调用
av_register_all()
,你试一下找其它的编码,比如aac,wma, 如果都找不到那肯定是忘记调用了。