基于ffmpeg 编解码 GIF 【PC】【Android】

举报
ShaderJoy 发表于 2021/12/30 00:31:34 2021/12/30
【摘要】 之前在从事FFmpeg相关工作的时候,其实早就想写这篇文章,但是由于一些杂事就给搁置了,最近因为逛技术博客看到“Floyd Steinberg Dither”算法,才想起来之前有篇关于“提高GIF压缩质量”的文章,一直还没有总结,怕再次耽搁,所以赶紧提笔记录之。   1.解码GIF FFmpeg 解码 GIF 其实和解码...

之前在从事FFmpeg相关工作的时候,其实早就想写这篇文章,但是由于一些杂事就给搁置了,最近因为逛技术博客看到“Floyd Steinberg Dither”算法,才想起来之前有篇关于“提高GIF压缩质量”的文章,一直还没有总结,怕再次耽搁,所以赶紧提笔记录之。

 

1.解码GIF

FFmpeg 解码 GIF 其实和解码普通的视频没太大区别,废话不多说,请看代码:

 

 


  
  1. // gif_decode_encode_test.cpp : 定义控制台应用程序的入口点。
  2. //
  3. #include "stdafx.h"
  4. #include <stdio.h>
  5. #define __STDC_CONSTANT_MACROS
  6. #ifdef _WIN32
  7. //Windows
  8. extern "C"
  9. {
  10. #include "libavcodec/avcodec.h"
  11. #include "libavformat/avformat.h"
  12. #include "libswscale/swscale.h"
  13. };
  14. #else
  15. //Linux...
  16. #ifdef __cplusplus
  17. extern "C"
  18. {
  19. #endif
  20. #include <libavcodec/avcodec.h>
  21. #include <libavformat/avformat.h>
  22. #include <libswscale/swscale.h>
  23. #ifdef __cplusplus
  24. };
  25. #endif
  26. #endif
  27. int main(int argc, char* argv[])
  28. {
  29. AVFormatContext *pFormatCtx;
  30. int i, videoindex;
  31. AVCodecContext *pCodecCtx;
  32. AVCodec *pCodec;
  33. AVFrame *pFrame, *pFrameYUV;
  34. uint8_t *out_buffer;
  35. AVPacket *packet;
  36. int y_size;
  37. int ret, got_picture;
  38. struct SwsContext *img_convert_ctx;
  39. char filepath[] = "..//deer.gif";
  40. FILE *fp_yuv = fopen("..//output.yuv", "wb+");
  41. av_register_all();
  42. //avformat_network_init();
  43. pFormatCtx = avformat_alloc_context();
  44. if(avformat_open_input(&pFormatCtx, filepath, NULL, NULL) != 0)
  45. {
  46. printf("Couldn't open input stream.\n");
  47. return -1;
  48. }
  49. if(avformat_find_stream_info(pFormatCtx, NULL) < 0)
  50. {
  51. printf("Couldn't find stream information.\n");
  52. return -1;
  53. }
  54. videoindex = -1;
  55. for(i = 0; i < pFormatCtx->nb_streams; i++)
  56. {
  57. if(pFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO)
  58. {
  59. videoindex = i;
  60. break;
  61. }
  62. }
  63. if(videoindex == -1)
  64. {
  65. printf("Didn't find a video stream.\n");
  66. return -1;
  67. }
  68. pCodecCtx = pFormatCtx->streams[videoindex]->codec;
  69. pCodec = avcodec_find_decoder(pCodecCtx->codec_id); // AV_CODEC_ID_GIF
  70. if(pCodec == NULL)
  71. {
  72. printf("Codec not found.\n");
  73. return -1;
  74. }
  75. if(avcodec_open2(pCodecCtx, pCodec, NULL) < 0)
  76. {
  77. printf("Could not open codec.\n");
  78. return -1;
  79. }
  80. pFrame = av_frame_alloc();
  81. pFrameYUV = av_frame_alloc();
  82. out_buffer = (uint8_t *)av_malloc(avpicture_get_size(PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height));
  83. avpicture_fill((AVPicture *)pFrameYUV, out_buffer, PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height);
  84. packet = (AVPacket *)av_malloc(sizeof(AVPacket));
  85. //Output Info-----------------------------
  86. printf("--------------- File Information ----------------\n");
  87. av_dump_format(pFormatCtx, 0, filepath, 0);
  88. printf("-------------------------------------------------\n");
  89. img_convert_ctx = sws_getContext(pCodecCtx->width, pCodecCtx->height, pCodecCtx->pix_fmt,
  90. pCodecCtx->width, pCodecCtx->height, PIX_FMT_YUV420P,
  91. SWS_BICUBIC, NULL, NULL, NULL);
  92. int count = 0;
  93. while(count <= 10)
  94. {
  95. ret = av_read_frame(pFormatCtx, packet);
  96. if (ret < 0)
  97. {
  98. count++;
  99. av_seek_frame(pFormatCtx, -1, 0 * AV_TIME_BASE, AVSEEK_FLAG_ANY);
  100. }
  101. if(packet->stream_index == videoindex)
  102. {
  103. ret = avcodec_decode_video2(pCodecCtx, pFrame, &got_picture, packet);
  104. if(ret < 0)
  105. {
  106. printf("Decode Error.\n");
  107. return -1;
  108. }
  109. if(got_picture)
  110. {
  111. sws_scale(img_convert_ctx, (const uint8_t* const*)pFrame->data, pFrame->linesize, 0, pCodecCtx->height,
  112. pFrameYUV->data, pFrameYUV->linesize);
  113. y_size = pCodecCtx->width * pCodecCtx->height;
  114. fwrite(pFrameYUV->data[0], 1, y_size, fp_yuv); //Y
  115. fwrite(pFrameYUV->data[1], 1, y_size / 4, fp_yuv); //U
  116. fwrite(pFrameYUV->data[2], 1, y_size / 4, fp_yuv); //V
  117. printf("Succeed to decode 1 frame!\n");
  118. }
  119. }
  120. av_free_packet(packet);
  121. }
  122. //flush decoder
  123. //FIX: Flush Frames remained in Codec
  124. while(1)
  125. {
  126. ret = avcodec_decode_video2(pCodecCtx, pFrame, &got_picture, packet);
  127. if(ret < 0)
  128. break;
  129. if(!got_picture)
  130. break;
  131. sws_scale(img_convert_ctx, (const uint8_t* const*)pFrame->data, pFrame->linesize, 0, pCodecCtx->height,
  132. pFrameYUV->data, pFrameYUV->linesize);
  133. int y_size = pCodecCtx->width * pCodecCtx->height;
  134. fwrite(pFrameYUV->data[0], 1, y_size, fp_yuv); //Y
  135. fwrite(pFrameYUV->data[1], 1, y_size / 4, fp_yuv); //U
  136. fwrite(pFrameYUV->data[2], 1, y_size / 4, fp_yuv); //V
  137. printf("Flush Decoder: Succeed to decode 1 frame!\n");
  138. }
  139. sws_freeContext(img_convert_ctx);
  140. fclose(fp_yuv);
  141. av_frame_free(&pFrameYUV);
  142. av_frame_free(&pFrame);
  143. avcodec_close(pCodecCtx);
  144. avformat_close_input(&pFormatCtx);
  145. return 0;
  146. }


以上代码很简单,就是将GIF逐帧解码出来,然后再重新编码为YUV格式。

 

 

2.编码GIF:

 

网上有相当丰富的编码GIF的方法:Awsome GIF —— 真心是好东西,收集得灰常全面!

但是这里我只介绍FFmpeg的,其他大家感兴趣可以去深挖。

 

其实FFmpeg的源码(libavcodec/gif.c) 是有一个叫GIF encoder的东东,但是发现国内国外网上几乎没人用!?大多数人都是用命令行来编码GIF的(真的简单方便多了),那么我也就随大流咯~

既然网上方法很多,那我也不赘述,就推荐几篇文章给大家把:

1. 《Quick Tip: create GIFs of your apps

2. 《使用 FFmpeg 处理高质量 GIF 图片》(这篇是本文开头那篇的中文版,但是国人的翻译,你懂得,建议还是直接看原版)

 

在Android平台也是可以使用shell命令的,因为我主要是做底层开发,所以我偏爱用NDK来调用shell,当然Java层也是可以调用的。【NDK执行shell命令的例子】和【还有一篇英文】【Java层执行shell命令】【还有大神写好的Bash】(真庆幸当初没有傻傻死磕ffmpeg的GIF encoder,不然怎么死都不知道,做技术也要选对路,选对了,就会感觉到全世界都在帮你)

 

 

另外除了用FFmpeg来编码GIF,Android NDK 还可以用gifflen,调用接口也是相当的简单!

 

综上,就是我对编解码GIF的一点小总结,希望能够帮助到和我一样的同学。

 

 

 

 

文章来源: panda1234lee.blog.csdn.net,作者:panda1234lee,版权归原作者所有,如需转载,请联系作者。

原文链接:panda1234lee.blog.csdn.net/article/details/52253131

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。