使用ffmpeg将h264视频文件转Mp4格式保存

其实具体的代码ffmpeg的官方demo做的功能已经很完善了,自己也就修修补补,下面直接上代码

#include "stdafx.h"
#include <iostream>
#include <stdio.h>
#include <tchar.h>

//这里是个坑,不加extern "C",死活编译不过
extern "C"
{
	#include "libavformat/avformat.h"
};


using namespace std;



 
int _tmain(int argc, _TCHAR* argv[])
{
	AVOutputFormat *ofmt = NULL;
	//创建输入AVFormatContext对象和输出AVFormatContext对象
	AVFormatContext *ifmt_ctx = NULL, *ofmt_ctx = NULL;
	AVPacket pkt;
	const char *in_filename;
	int ret, i;
	int stream_index = 0;
	int *stream_mapping = NULL;
	int stream_mapping_size = 0;

	in_filename  = “C:\\test.h264”;

	//产生对应的录像文件名
	SYSTEMTIME systime;
	GetLocalTime(&systime);
	char cTime[128];
	sprintf(cTime,"%4d/%02d/%02d %02d:%02d:%02d.%03d\n",
		systime.wYear,systime.wMonth,systime.wDay,systime.wHour,
		systime.wMinute, systime.wSecond,systime.wMilliseconds);
	char ou
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值