当前位置:   article > 正文

C++调用ffmpeg sdk开发_c++ ffmpeg

c++ ffmpeg

刚入职编解码开发岗,之前做的都是算法设计,没有接触过sdk开发

开始用博客来记录自己的学习过程吧,希望有一天自己也可以成为大佬。

调用ffmpeg sdk来实现mp4格式到avi格式的转换

...本来想通过实现各个格式的相互转换来熟悉ffmpeg的,但是发现内容有点多,就只实现了mp4转成avi格式。

1.ffmpeg库编译

①直接从官网下载已经编译好的ffmpeg,这个网上很多介绍的文章

大佬的博客:【精选】Windows编译和使用ffmpeg_windows ffmpeg_心愿许得无限大的博客-CSDN博客

②自己动手,编译源码得到自己想要的库。在linux下比较简单,编译三步曲就OK了。

./configure 

make

make install

windows下面得下载MINGW来编译,听说是专门用来编译ffmpeg的,确实不错。

编译完以后就可以得到这样一个文件夹了,想要的东西里面都有

2.c++调用ffmpeg的库

用我们宇宙最强IDE VS来创建C++项目,整个空项目就行

配置一下项目链接器里的常规和输入两个地方把咱们的ffmpeg库给它配进去

常规->附加库目录:把lib库的路径加进去

输入->附加依赖项:把需要用到的dll.a库全部写进去

3.编写格式转换代码

环境没问题了就开始写我们的格式转换吧。首先整体的流程,在网上看到有大佬给出了基于ffmpeg格式转换的流程,如下图,是FLV转到AVI的,我只有几个MP4文件,所以就参考大佬的流程做一个MP4转AVI吧。

总体来说流程还不是太难

①解封装,包括了视频和音频,两个咱们分开处理

②解码,用输入文件对应的解码器将音视频码流解码成普通数据(YUV、PCM等等)

③编码,我们想要输出的格式对应的编码器将数据再编码成码流

④再封装,装好就可以输出了,得到我们想要的格式了。

在网上也看到有大佬总结了各种音视频封装格式可以使用的编解码器,如下图

下面直接给上代码,每一步都有相应的注释

  1. /*
  2. * @Time: 2023.10.24
  3. * @Author: Wu Liu
  4. * @File: T_format6.cpp
  5. * @Function: format conversion
  6. */
  7. extern "C" {
  8. #include <libavformat/avformat.h>
  9. #include <libavcodec/avcodec.h>
  10. #include <libavutil/avutil.h>
  11. #include <libavutil/imgutils.h>
  12. #include <libswscale/swscale.h>
  13. }
  14. #include <iostream>
  15. /* @T_format6.cpp
  16. * 基本流程:
  17. * 1.解析输入文件,获得流信息,确定音视频解码器参数、上下文。
  18. * 2.根据输出要求配置音视频编码器参数
  19. * 3.循环每一帧解码、再编码输出
  20. * 4.内存清理
  21. */
  22. bool Format_conver(const std::string& inputFile, const std::string& outputFileName, const std::string& Format) {
  23. avformat_network_init(); // 初始化网络库
  24. AVFormatContext* inputFormatContext = nullptr;
  25. AVCodecContext* videoCodecContext = nullptr;
  26. AVCodecContext* audioCodecContext = nullptr;
  27. AVFormatContext* outputFormatContext = nullptr;
  28. AVStream* videoStream = nullptr;
  29. AVStream* audioStream = nullptr;
  30. SwsContext* swsContext = nullptr;
  31. AVCodecID videoCodecId ;
  32. AVCodecID audioCodecId ;
  33. if (Format == "avi")
  34. {
  35. videoCodecId = AV_CODEC_ID_MPEG2VIDEO;
  36. audioCodecId = AV_CODEC_ID_PCM_S16LE;
  37. }
  38. else if (Format == "mp4")
  39. {
  40. videoCodecId = AV_CODEC_ID_H264;
  41. audioCodecId = AV_CODEC_ID_AAC;
  42. }
  43. else if (Format == "wmv")
  44. {
  45. videoCodecId = AV_CODEC_ID_MSMPEG4V3;
  46. audioCodecId = AV_CODEC_ID_WMAV2;
  47. }
  48. else if (Format == "mkv")
  49. {
  50. videoCodecId = AV_CODEC_ID_H264;
  51. audioCodecId = AV_CODEC_ID_MP3;
  52. }
  53. else if (Format == "flv")
  54. {
  55. videoCodecId = AV_CODEC_ID_MPEG4;
  56. audioCodecId = AV_CODEC_ID_AAC;
  57. }
  58. else {
  59. std::cout << "不支持转换为这种格式" << std::endl;
  60. return false;
  61. }
  62. // 打开输入文件
  63. if (avformat_open_input(&inputFormatContext, inputFile.c_str(), nullptr, nullptr) != 0) {
  64. std::cout << "无法打开输入文件" << std::endl;
  65. return false;
  66. }
  67. // 获取流信息
  68. if (avformat_find_stream_info(inputFormatContext, nullptr) < 0) {
  69. std::cout << "无法获取输入文件流信息" << std::endl;
  70. avformat_close_input(&inputFormatContext);
  71. return false;
  72. }
  73. // 查找视频流和音频流索引
  74. int videoStreamIndex = -1;
  75. int audioStreamIndex = -1;
  76. for (int i = 0; i < inputFormatContext->nb_streams; i++) {
  77. if (inputFormatContext->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
  78. videoStreamIndex = i;
  79. }
  80. else if (inputFormatContext->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
  81. audioStreamIndex = i;
  82. }
  83. }
  84. if (videoStreamIndex == -1 || audioStreamIndex == -1) {
  85. std::cout << "没有找到视频流" << std::endl;
  86. avformat_close_input(&inputFormatContext);
  87. return false;
  88. }
  89. // 获取视频和音频流
  90. videoStream = inputFormatContext->streams[videoStreamIndex];
  91. audioStream = inputFormatContext->streams[audioStreamIndex];
  92. // 获取视频解码器
  93. const AVCodec* videoCodec = avcodec_find_decoder(videoStream->codecpar->codec_id);
  94. if (!videoCodec) {
  95. std::cout << "没有找到视频解码器" << std::endl;
  96. avformat_close_input(&inputFormatContext);
  97. return false;
  98. }
  99. // 创建并打开视频解码器上下文
  100. videoCodecContext = avcodec_alloc_context3(videoCodec);
  101. if (!videoCodecContext) {
  102. std::cout << "创建视频解码器上下文失败"<< std::endl;
  103. avformat_close_input(&inputFormatContext);
  104. return false;
  105. }
  106. //视频流参数去填充上下文context
  107. avcodec_parameters_to_context(videoCodecContext, videoStream->codecpar);
  108. if (avcodec_open2(videoCodecContext, videoCodec, nullptr) < 0) {
  109. std::cout << "打开视频解码器失败" << std::endl;
  110. avformat_close_input(&inputFormatContext);
  111. avcodec_free_context(&videoCodecContext);
  112. return false;
  113. }
  114. // 获取音频编码器
  115. const AVCodec* audioCodec = avcodec_find_decoder(audioStream->codecpar->codec_id);
  116. if (!audioCodec) {
  117. std::cout << "获取音频编码器失败" << std::endl;
  118. avformat_close_input(&inputFormatContext);
  119. avcodec_free_context(&videoCodecContext);
  120. return false;
  121. }
  122. // 创建并打开音频解码器上下文
  123. audioCodecContext = avcodec_alloc_context3(audioCodec);
  124. if (!audioCodecContext) {
  125. std::cout << "创建音频编码器上下文失败" << std::endl;
  126. avformat_close_input(&inputFormatContext);
  127. avcodec_free_context(&videoCodecContext);
  128. return false;
  129. }
  130. //音频流参数填充上下文
  131. avcodec_parameters_to_context(audioCodecContext, audioStream->codecpar);
  132. if (avcodec_open2(audioCodecContext, audioCodec, nullptr) < 0) {
  133. std::cout << "打开音频编码器失败" << std::endl;
  134. avformat_close_input(&inputFormatContext);
  135. avcodec_free_context(&videoCodecContext);
  136. avcodec_free_context(&audioCodecContext);
  137. return false;
  138. }
  139. // 创建输出文件的上下文
  140. avformat_alloc_output_context2(&outputFormatContext, nullptr, nullptr, outputFileName.c_str());
  141. if (!outputFormatContext) {
  142. std::cout << "创建输出文件的上下文失败" << std::endl;
  143. avformat_close_input(&inputFormatContext);
  144. avcodec_free_context(&videoCodecContext);
  145. avcodec_free_context(&audioCodecContext);
  146. return false;
  147. }
  148. // 添加视频流到输出上下文
  149. AVStream* outVideoStream = avformat_new_stream(outputFormatContext, nullptr);
  150. if (!outVideoStream) {
  151. std::cout << "添加视频流到输出文件失败" << std::endl;
  152. avformat_close_input(&inputFormatContext);
  153. avcodec_free_context(&videoCodecContext);
  154. avcodec_free_context(&audioCodecContext);
  155. avformat_free_context(outputFormatContext);
  156. return false;
  157. }
  158. outVideoStream->id = outputFormatContext->nb_streams - 1;
  159. // avcodec_parameters_copy(outVideoStream->codecpar, videoStream->codecpar);
  160. outVideoStream->codecpar->codec_tag = 0;
  161. // 设置视频编码器
  162. const AVCodec* outVideoCodec = avcodec_find_encoder(videoCodecId);
  163. if (!outVideoCodec) {
  164. std::cout << "设置视频编码器失败" << std::endl;
  165. avformat_close_input(&inputFormatContext);
  166. avcodec_free_context(&videoCodecContext);
  167. avcodec_free_context(&audioCodecContext);
  168. avformat_free_context(outputFormatContext);
  169. return false;
  170. }
  171. AVCodecContext* outVideoCodecContext = avcodec_alloc_context3(outVideoCodec);
  172. if (!outVideoCodecContext) {
  173. std::cout << "设置视频编码器上下文失败" << std::endl;
  174. avformat_close_input(&inputFormatContext);
  175. avcodec_free_context(&videoCodecContext);
  176. avcodec_free_context(&audioCodecContext);
  177. avformat_free_context(outputFormatContext);
  178. return false;
  179. }
  180. //视频编码器参数设置
  181. //avcodec_parameters_to_context(outVideoCodecContext, outVideoStream->codecpar);
  182. outVideoCodecContext->codec_id = videoCodecId;
  183. //outVideoCodecContext->time_base = videoStream->time_base;
  184. outVideoCodecContext->time_base.den = 25;
  185. outVideoCodecContext->time_base.num = 1;
  186. outVideoCodecContext->gop_size = 13;
  187. outVideoCodecContext->bit_rate = 8000000;
  188. outVideoCodecContext->refs = 0;
  189. outVideoCodecContext->max_b_frames = 4;
  190. outVideoCodecContext->width = 1920;
  191. outVideoCodecContext->height = 1080;
  192. outVideoCodecContext->pix_fmt = AV_PIX_FMT_YUV420P;
  193. //从输出上下文中复制参数到输出流
  194. avcodec_parameters_from_context(outVideoStream->codecpar, outVideoCodecContext);
  195. // 打开视频编码器
  196. if (avcodec_open2(outVideoCodecContext, outVideoCodec, nullptr) < 0) {
  197. std::cout << "无法打开视频编码器" << std::endl;
  198. avformat_close_input(&inputFormatContext);
  199. avcodec_free_context(&videoCodecContext);
  200. avcodec_free_context(&audioCodecContext);
  201. avformat_free_context(outputFormatContext);
  202. avcodec_free_context(&outVideoCodecContext);
  203. return false;
  204. }
  205. // 添加音频流到输出文件
  206. AVStream* outAudioStream = avformat_new_stream(outputFormatContext, nullptr);
  207. if (!outAudioStream) {
  208. std::cout << "添加音频流到输出文件失败" << std::endl;
  209. avformat_close_input(&inputFormatContext);
  210. avcodec_free_context(&videoCodecContext);
  211. avcodec_free_context(&audioCodecContext);
  212. avformat_free_context(outputFormatContext);
  213. avcodec_free_context(&outVideoCodecContext);
  214. return false;
  215. }
  216. outAudioStream->id = outputFormatContext->nb_streams - 1;
  217. //输出音频流参数复制
  218. avcodec_parameters_copy(outAudioStream->codecpar, audioStream->codecpar);
  219. outAudioStream->codecpar->codec_tag = 0;
  220. // 设置音频编码器
  221. const AVCodec* outAudioCodec = avcodec_find_encoder(audioCodecId);
  222. if (!outAudioCodec) {
  223. std::cout << "设置音频编码器失败" << std::endl;
  224. avformat_close_input(&inputFormatContext);
  225. avcodec_free_context(&videoCodecContext);
  226. avcodec_free_context(&audioCodecContext);
  227. avformat_free_context(outputFormatContext);
  228. avcodec_free_context(&outVideoCodecContext);
  229. return false;
  230. }
  231. AVCodecContext* outAudioCodecContext = avcodec_alloc_context3(outAudioCodec);
  232. if (!outAudioCodecContext) {
  233. std::cout << "设置音频编码器上下文失败" << std::endl;
  234. avformat_close_input(&inputFormatContext);
  235. avcodec_free_context(&videoCodecContext);
  236. avcodec_free_context(&audioCodecContext);
  237. avformat_free_context(outputFormatContext);
  238. avcodec_free_context(&outVideoCodecContext);
  239. return false;
  240. }
  241. //音频编码器参数
  242. avcodec_parameters_to_context(outAudioCodecContext, outAudioStream->codecpar);
  243. outAudioCodecContext->codec_id = audioCodecId;
  244. outAudioCodecContext->time_base = audioStream->time_base;
  245. outAudioCodecContext->sample_fmt = AV_SAMPLE_FMT_S16;
  246. avcodec_parameters_from_context(outAudioStream->codecpar, outAudioCodecContext);
  247. // 打开音频编码器
  248. if (avcodec_open2(outAudioCodecContext, outAudioCodec, nullptr) < 0) {
  249. std::cout << "无法打开音频编码器" << std::endl;
  250. avformat_close_input(&inputFormatContext);
  251. avcodec_free_context(&videoCodecContext);
  252. avcodec_free_context(&audioCodecContext);
  253. avformat_free_context(outputFormatContext);
  254. avcodec_free_context(&outVideoCodecContext);
  255. avcodec_free_context(&outAudioCodecContext);
  256. return false;
  257. }
  258. // 打开输出文件
  259. if (!(outputFormatContext->oformat->flags & AVFMT_NOFILE)) {
  260. if (avio_open(&outputFormatContext->pb, outputFileName.c_str(), AVIO_FLAG_WRITE) < 0) {
  261. std::cout << "无法打开输出文件" << std::endl;
  262. avformat_close_input(&inputFormatContext);
  263. avcodec_free_context(&videoCodecContext);
  264. avcodec_free_context(&audioCodecContext);
  265. avformat_free_context(outputFormatContext);
  266. avcodec_free_context(&outVideoCodecContext);
  267. avcodec_free_context(&outAudioCodecContext);
  268. return false;
  269. }
  270. }
  271. // 写入输出文件头
  272. if (avformat_write_header(outputFormatContext, nullptr) < 0) {
  273. std::cout << "无法写入输出文件头" << std::endl;
  274. avformat_close_input(&inputFormatContext);
  275. avcodec_free_context(&videoCodecContext);
  276. avcodec_free_context(&audioCodecContext);
  277. avformat_free_context(outputFormatContext);
  278. avcodec_free_context(&outVideoCodecContext);
  279. avcodec_free_context(&outAudioCodecContext);
  280. return false;
  281. }
  282. //打印输出相关信息
  283. av_dump_format(outputFormatContext, 0, outputFileName.c_str(), 1);
  284. // 分配帧对象
  285. AVFrame* videoFrame = av_frame_alloc();
  286. AVFrame* audioFrame = av_frame_alloc();
  287. AVPacket* inputPacket = av_packet_alloc();
  288. AVPacket* videoOutputPacket = av_packet_alloc();
  289. AVPacket* audioOutputPacket = av_packet_alloc();
  290. if (!videoFrame || !audioFrame || !inputPacket || !videoOutputPacket || !audioOutputPacket) {
  291. std::cout << "分配帧对象失败" << std::endl;
  292. avformat_close_input(&inputFormatContext);
  293. avcodec_free_context(&videoCodecContext);
  294. avcodec_free_context(&audioCodecContext);
  295. avformat_free_context(outputFormatContext);
  296. avcodec_free_context(&outVideoCodecContext);
  297. avcodec_free_context(&outAudioCodecContext);
  298. return false;
  299. }
  300. // 初始化像素格式转换器
  301. swsContext = sws_getContext(videoCodecContext->width, videoCodecContext->height, videoCodecContext->pix_fmt,
  302. outVideoCodecContext->width, outVideoCodecContext->height, outVideoCodecContext->pix_fmt,
  303. SWS_BILINEAR, nullptr, nullptr, nullptr);
  304. if (!swsContext) {
  305. std::cout << "初始化像素格式转换器失败" << std::endl;
  306. avformat_close_input(&inputFormatContext);
  307. avcodec_free_context(&videoCodecContext);
  308. avcodec_free_context(&audioCodecContext);
  309. avformat_free_context(outputFormatContext);
  310. avcodec_free_context(&outVideoCodecContext);
  311. avcodec_free_context(&outAudioCodecContext);
  312. av_frame_free(&videoFrame);
  313. av_frame_free(&audioFrame);
  314. av_packet_free(&inputPacket);
  315. av_packet_free(&videoOutputPacket);
  316. av_packet_free(&audioOutputPacket);
  317. return false;
  318. }
  319. // 解码并编码每一帧
  320. int ret = 0;
  321. int nVideoCount = 0;
  322. while (av_read_frame(inputFormatContext, inputPacket) >= 0) {
  323. if (inputPacket->stream_index == videoStreamIndex) {
  324. // 视频流处理
  325. ret = avcodec_send_packet(videoCodecContext, inputPacket);
  326. if (ret < 0) {
  327. break;
  328. }
  329. while (ret >= 0) {
  330. ret = avcodec_receive_frame(videoCodecContext, videoFrame);
  331. if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
  332. break;
  333. }
  334. else if (ret < 0) {
  335. std::cout << "视频解码 ret 异常" << std::endl;
  336. avformat_close_input(&inputFormatContext);
  337. avcodec_free_context(&videoCodecContext);
  338. avcodec_free_context(&audioCodecContext);
  339. avformat_free_context(outputFormatContext);
  340. avcodec_free_context(&outVideoCodecContext);
  341. avcodec_free_context(&outAudioCodecContext);
  342. av_frame_free(&videoFrame);
  343. av_frame_free(&audioFrame);
  344. av_packet_free(&inputPacket);
  345. av_packet_free(&videoOutputPacket);
  346. av_packet_free(&audioOutputPacket);
  347. return false;
  348. }
  349. // 转换像素格式
  350. sws_scale(swsContext, videoFrame->data, videoFrame->linesize, 0, videoCodecContext->height,
  351. videoFrame->data, videoFrame->linesize);
  352. // 编码视频帧
  353. videoFrame->pts = (int64_t)(40 * (nVideoCount) / av_q2d(outVideoCodecContext->time_base) / 1000.0);//时间
  354. nVideoCount++;
  355. ret = avcodec_send_frame(outVideoCodecContext, videoFrame);
  356. if (ret < 0) {
  357. break;
  358. }
  359. while (ret >= 0) {
  360. ret = avcodec_receive_packet(outVideoCodecContext, videoOutputPacket);
  361. if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
  362. break;
  363. }
  364. else if (ret < 0) {
  365. std::cout << "视频编码 ret 异常" << std::endl;
  366. avformat_close_input(&inputFormatContext);
  367. avcodec_free_context(&videoCodecContext);
  368. avcodec_free_context(&audioCodecContext);
  369. avformat_free_context(outputFormatContext);
  370. avcodec_free_context(&outVideoCodecContext);
  371. avcodec_free_context(&outAudioCodecContext);
  372. av_frame_free(&videoFrame);
  373. av_frame_free(&audioFrame);
  374. av_packet_free(&inputPacket);
  375. av_packet_free(&videoOutputPacket);
  376. av_packet_free(&audioOutputPacket);
  377. return false;
  378. }
  379. av_packet_rescale_ts(videoOutputPacket, outVideoCodecContext->time_base, outVideoStream->time_base);
  380. videoOutputPacket->stream_index = outVideoStream->index;
  381. // 写入视频帧到输出文件
  382. ret = av_interleaved_write_frame(outputFormatContext, videoOutputPacket);
  383. if (ret < 0) {
  384. break;
  385. }
  386. }
  387. }
  388. }
  389. else if (inputPacket->stream_index == audioStreamIndex) {
  390. // 音频流处理
  391. ret = avcodec_send_packet(audioCodecContext, inputPacket);
  392. if (ret < 0) {
  393. break;
  394. }
  395. while (ret >= 0) {
  396. ret = avcodec_receive_frame(audioCodecContext, audioFrame);
  397. if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
  398. break;
  399. }
  400. else if (ret < 0) {
  401. std::cout << "音频解码 ret 异常" << std::endl;
  402. avformat_close_input(&inputFormatContext);
  403. avcodec_free_context(&videoCodecContext);
  404. avcodec_free_context(&audioCodecContext);
  405. avformat_free_context(outputFormatContext);
  406. avcodec_free_context(&outVideoCodecContext);
  407. avcodec_free_context(&outAudioCodecContext);
  408. av_frame_free(&videoFrame);
  409. av_frame_free(&audioFrame);
  410. av_packet_free(&inputPacket);
  411. av_packet_free(&videoOutputPacket);
  412. av_packet_free(&audioOutputPacket);
  413. return false;
  414. }
  415. // 编码音频帧
  416. ret = avcodec_send_frame(outAudioCodecContext, audioFrame);
  417. if (ret < 0) {
  418. break;
  419. }
  420. while (ret >= 0) {
  421. ret = avcodec_receive_packet(outAudioCodecContext, audioOutputPacket);
  422. if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
  423. break;
  424. }
  425. else if (ret < 0) {
  426. std::cout << "音频编码 ret 异常" << std::endl;
  427. avformat_close_input(&inputFormatContext);
  428. avcodec_free_context(&videoCodecContext);
  429. avcodec_free_context(&audioCodecContext);
  430. avformat_free_context(outputFormatContext);
  431. avcodec_free_context(&outVideoCodecContext);
  432. avcodec_free_context(&outAudioCodecContext);
  433. av_frame_free(&videoFrame);
  434. av_frame_free(&audioFrame);
  435. av_packet_free(&inputPacket);
  436. av_packet_free(&videoOutputPacket);
  437. av_packet_free(&audioOutputPacket);
  438. return false;
  439. }
  440. av_packet_rescale_ts(audioOutputPacket, outAudioCodecContext->time_base, outAudioStream->time_base);
  441. audioOutputPacket->stream_index = outAudioStream->index;
  442. // 写入音频帧到输出文件
  443. ret = av_interleaved_write_frame(outputFormatContext, audioOutputPacket);
  444. if (ret < 0) {
  445. break;
  446. }
  447. }
  448. }
  449. }
  450. av_packet_unref(inputPacket);
  451. }
  452. // 写入输出文件尾部
  453. av_write_trailer(outputFormatContext);
  454. // 释放资源
  455. av_frame_free(&videoFrame);
  456. av_frame_free(&audioFrame);
  457. av_packet_free(&inputPacket);
  458. av_packet_free(&videoOutputPacket);
  459. av_packet_free(&audioOutputPacket);
  460. avcodec_free_context(&videoCodecContext);
  461. avcodec_free_context(&audioCodecContext);
  462. avcodec_free_context(&outVideoCodecContext);
  463. avcodec_free_context(&outAudioCodecContext);
  464. avformat_close_input(&inputFormatContext);
  465. avformat_free_context(outputFormatContext);
  466. sws_freeContext(swsContext);
  467. return true;
  468. }
  469. int main() {
  470. // 输入文件名和输出文件名
  471. std::string inputFilename, outputFilename, Format;
  472. std::cout << "请输入输入文件名(带后缀):";
  473. std::cin >> inputFilename;
  474. std::cout << "请输入输出格式(avi,mp4,wmv,mkv,flv...):";
  475. std::cin >> Format;
  476. std::cout << "请输入输出文件名(带后缀):";
  477. std::cin >> outputFilename;
  478. if (!Format_conver(inputFilename, outputFilename, Format)) {
  479. std::cout << "Failed to convert!" << std::endl;
  480. return -1;
  481. }
  482. std::cout << "Conversion complete!" << std::endl;
  483. return 0;
  484. }

这里我也想多转换点格式的,但是发现好像有点麻烦,就算了吧。里面主要是关于参数和时间戳的设计,我处理了很久是比较复杂的一点。一开始我想直接就用输入源的参数,参数太多了懒得一个一个报错了再去改,谁知道错的离谱,代码里面我自己设定了几个参数,可能不太全,但是代码可以运行了,结果也是准确的,还是不错的,毕竟自己也是刚开始学习。以后慢慢的接触的多了,再回来好好改现在存在的问题吧。

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号