2016-06-28 497 views
5

我的視頻設置的格式佈局如下:FFmpeg的「movflags」>「的fastStart」導致無效MP4文件寫到

AVOutputFormat* outputFormat = ffmpeg.av_guess_format(null, "output.mp4", null); 

AVCodec* videoCodec = ffmpeg.avcodec_find_encoder(outputFormat->video_codec); 

AVFormatContext* formatContext = ffmpeg.avformat_alloc_context(); 
formatContext->oformat = outputFormat; 
formatContext->video_codec_id = videoCodec->id; 

ffmpeg.avformat_new_stream(formatContext, videoCodec); 

這是我如何設置的編解碼器上下文:

AVCodecContext* codecContext = ffmpeg.avcodec_alloc_context3(videoCodec); 
codecContext->bit_rate = 400000; 
codecContext->width = 1280; 
codecContext->height = 720; 
codecContext->gop_size = 12; 
codecContext->max_b_frames = 1; 
codecContext->pix_fmt = videoCodec->pix_fmts[0]; 
codecContext->codec_id = videoCodec->id; 
codecContext->codec_type = videoCodec->type; 
codecContext->time_base = new AVRational 
{ 
    num = 1, 
    den = 30 
}; 

我用下面的代碼來設置 「movflags」>爲視頻的標題 「的fastStart」 選項:

AVDictionary* options = null; 

int result = ffmpeg.av_dict_set(&options, "movflags", "faststart", 0); 

int writeHeaderResult = ffmpeg.avformat_write_header(formatContext, &options); 

該文件被打開和首標被寫爲如下:

if ((formatContext->oformat->flags & ffmpeg.AVFMT_NOFILE) == 0) 
{ 
    int ioOptionResult = ffmpeg.avio_open(&formatContext->pb, "output.mp4", ffmpeg.AVIO_FLAG_WRITE); 
} 

int writeHeaderResult = ffmpeg.avformat_write_header(formatContext, &options); 

在此之後,我寫每個視頻幀如下:

outputFrame->pts = frameIndex; 

packet.flags |= ffmpeg.AV_PKT_FLAG_KEY; 
packet.pts = frameIndex; 
packet.dts = frameIndex; 

int encodedFrame = 0; 
int encodeVideoResult = ffmpeg.avcodec_encode_video2(codecContext, &packet, outputFrame, &encodedFrame); 

if (encodedFrame != 0) 
{ 
    packet.pts = ffmpeg.av_rescale_q(packet.pts, codecContext->time_base, m_videoStream->time_base); 
    packet.dts = ffmpeg.av_rescale_q(packet.dts, codecContext->time_base, m_videoStream->time_base); 
    packet.stream_index = m_videoStream->index; 

    if (codecContext->coded_frame->key_frame > 0) 
    { 
     packet.flags |= ffmpeg.AV_PKT_FLAG_KEY; 
    } 

    int writeFrameResult = ffmpeg.av_interleaved_write_frame(formatContext, &packet); 
} 

之後,我寫拖車:

int writeTrailerResult = ffmpeg.av_write_trailer(formatContext); 

文件完成寫入,所有內容都會關閉並正確釋放。但是,MP4文件是無法播放的(甚至VLC無法播放它)。 AtomicParsley.exe不會顯示有關該文件的任何信息。

用於AUTOGEN庫DLL是:

avcodec-56.dll 
avdevice-56.dll 
avfilter-5.dll 
avformat-56.dll 
avutil-54.dll 
postproc-53.dll 
swresample-1.dll 
swscale-3.dll 
+0

如何創建formatContext? – szatmary

+0

更新的問題。 – williamtroup

+0

io環境在哪裏?數據在哪裏寫入?如果您正在使用流媒體io(如粗壯),則無法快速啓動該文件,因爲查找不適用於流。 – szatmary

回答

1

這樣看來使用「的fastStart」自身原因導致的問題。只要你通過「movflags」(在我的例子中是「frag_duration」)正確設置你的段大小,它應該沒問題。

此外,最好確保視頻中的兩個流都正確同步。有關此問題的答案,請參閱this問題。