百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术教程 > 正文

视频多线程解码 视频多线程解码软件

csdh11 2024-12-23 09:25 15 浏览

最近在做视频解码相关的工作,有一个功能需要将整个视频解码之后放到内存里面,经测试,一分钟的视频解码需要20s,不算太理想,考虑用多线程来实现。

基本思路是获取所有关键帧信息,然后开启不同的线程来从不同的关键帧开始解码。

1,获取所有关键帧信息,获取所有的关键帧时间戳,大约会花费0.2s:

+ (NSMutableArray *)keyFramePtsWithM3u8Path:(NSString *)path{
 NSMutableArray *timestamp_array = [[NSMutableArray alloc] init];
 canceled = false;
 AVFormatContext *qFormatCtx = NULL;
 AVCodecContext *qCodeCtx = NULL;
 AVCodec *qCodec = NULL;
 AVPacket qPacket;
 struct SwsContext *qSwsCtx;
 const char *filePath = [path UTF8String];
 if (filePath == nil) {
 return nil;
 }
 av_register_all();
 if (avformat_open_input(&qFormatCtx, filePath, NULL, NULL) != 0) {
 return nil;
 }
 if (avformat_find_stream_info(qFormatCtx, NULL) < 0) {
 return nil;
 }
 av_dump_format(qFormatCtx, 0, filePath, 0);
 int videoStream = -1;
 for (int i = 0;i < qFormatCtx->nb_streams;i++) {
 if (qFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
 videoStream = i;
 break;
 }
 }
 if (videoStream == -1) {
 return nil;
 }
 qCodeCtx = avcodec_alloc_context3(NULL);
 if (avcodec_parameters_to_context(qCodeCtx, qFormatCtx->streams[videoStream]->codecpar) < 0) {
 return nil;
 }
 qCodec = avcodec_find_decoder(qCodeCtx->codec_id);
 if (qCodeCtx == NULL) {
 return nil;
 }
 if (avcodec_open2(qCodeCtx, qCodec, NULL) < 0) {
 return nil;
 }
 qSwsCtx = sws_getContext(qCodeCtx->width,
 qCodeCtx->height,
 qCodeCtx->pix_fmt,
 qCodeCtx->width,
 qCodeCtx->height,
 AV_PIX_FMT_RGBA,
 SWS_BICUBIC, NULL, NULL, NULL);
 while (av_read_frame(qFormatCtx, &qPacket) >= 0) {
 if (qPacket.stream_index == videoStream) {
 if(canceled){
 av_packet_unref(&qPacket);
 break;
 }
 if(qPacket.flags==1){
 [timestamp_array addObject:[NSString stringWithFormat:@"%lld",qPacket.pts]];
 }
 }
 av_packet_unref(&qPacket);
 }
 sws_freeContext(qSwsCtx);
 avcodec_close(qCodeCtx);
 avformat_close_input(&qFormatCtx);
 return timestamp_array;
}

2,根据关键帧信息开启多个队列(这里为每5个关键帧开启一个队列,可以适当调整):

- (void)parseVideoToImagesMultiThreadWithM3u8Path:(NSString *)path andError:(NSError *__autoreleasing *)error{
 NSMutableArray *timestamps = [Decoder keyFramePtsWithM3u8Path:path andError:nil];
 int i=0;
 int gap = 5;//每五个关键帧开启一个队列
 __block long thread_count = ceil([timestamps count]/(float)gap);
 __block long complete_count = 0;
 __block NSMutableDictionary *imgs = [[NSMutableDictionary alloc] init];
 UInt64 t = [[NSDate date] timeIntervalSince1970]* 1000;
 for(NSString *time in timestamps){
 if(i%gap==0){
 NSString *start = time;
 NSString *end = (i+gap)<=([timestamps count]-1)?timestamps[i+gap]:@"1000000000";
 dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
 [Decoder decodeWithM3u8Path:path andStart:start andEnd:end andBlock:^(unsigned char *buffer, int width, int height, NSString *timestamp) {
 const size_t bufferLength = width * height * 3;
 NSData *data = [NSData dataWithBytes:buffer length:bufferLength];
 [imgs setObject:data forKey:timestamp];
 } andError:nil];
 complete_count++;
 if(complete_count==thread_count){
 if ([self.delegate respondsToSelector:@selector(finished:)]) {
 [self.delegate finished:imgs];
 }
 NSLog(@"Cutter---:%fms",[[NSDate date] timeIntervalSince1970]* 1000 - t);
 }
 });
 }
 i++;
 }
}

3,那么我们就需要一个有开始和结束时间戳的方法来实现区间解码:

+ (void)decodeWithM3u8Path:(NSString *)path andStart:(NSString *)start andEnd:(NSString *)end andBlock:(void (^)(unsigned char *, int, int, NSString *))block andError:(NSError *__autoreleasing *)error{
 canceled = false;
 AVFormatContext *qFormatCtx = NULL;
 AVCodecContext *qCodeCtx = NULL;
 AVCodec *qCodec = NULL;
 AVPacket qPacket;
 AVFrame *qFrame = NULL;
 AVFrame *qFrameRGB = NULL;
 struct SwsContext *qSwsCtx;
 uint8_t *buffer = NULL;
 int64_t start_timestamp = [start longLongValue];
 int64_t end_timestamp = [end longLongValue];
 const char *filePath = [path UTF8String];
 if (filePath == nil) {
 return;
 }
 av_register_all();
 if (avformat_open_input(&qFormatCtx, filePath, NULL, NULL) != 0) {
 return;
 }
 if (avformat_find_stream_info(qFormatCtx, NULL) < 0) {
 return;
 }
 av_dump_format(qFormatCtx, 0, filePath, 0);
 int videoStream = -1;
 for (int i = 0;i < qFormatCtx->nb_streams;i++) {
 if (qFormatCtx->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
 videoStream = i;
 break;
 }
 }
 if (videoStream == -1) {
 return;
 }
 qCodeCtx = avcodec_alloc_context3(NULL);
 if (avcodec_parameters_to_context(qCodeCtx, qFormatCtx->streams[videoStream]->codecpar) < 0) {
 return;
 }
 qCodec = avcodec_find_decoder(qCodeCtx->codec_id);
 if (qCodeCtx == NULL) {
 return;
 }
 if (avcodec_open2(qCodeCtx, qCodec, NULL) < 0) {
 return;
 }
 qFrame = av_frame_alloc();
 qFrameRGB = av_frame_alloc();
 if (qFrame == NULL || qFrameRGB == NULL) {
 return;
 }
 int heigth = qCodeCtx->height>>2;
 int width = qCodeCtx->width>>2;
 int numBytes = av_image_get_buffer_size(AV_PIX_FMT_RGB24,
 width,
 heigth, 1);
 buffer = (uint8_t *)av_malloc(numBytes * sizeof(uint8_t));
 av_image_fill_arrays(qFrameRGB->data,
 qFrameRGB->linesize,
 buffer,
 AV_PIX_FMT_RGB24,
 width,
 heigth, 1);
 qSwsCtx = sws_getContext(qCodeCtx->width,
 qCodeCtx->height,
 qCodeCtx->pix_fmt,
 width,
 heigth,
 AV_PIX_FMT_RGB24,
 SWS_FAST_BILINEAR, NULL, NULL, NULL);
 while (av_read_frame(qFormatCtx, &qPacket) >= 0) {
 if (qPacket.stream_index == videoStream) {
 if(canceled){
 av_packet_unref(&qPacket);
 break;
 }
 if(qPacket.pts>=start_timestamp){
 if(qPacket.pts<end_timestamp){
 int ret = avcodec_send_packet(qCodeCtx, &qPacket);
 if (ret < 0) {
 return;
 }
 ret = avcodec_receive_frame(qCodeCtx, qFrame);
 if (ret ==0) {
 sws_scale(qSwsCtx,
 (uint8_t const * const *)qFrame->data,
 qFrame->linesize, 0,
 qCodeCtx->height,
 qFrameRGB->data,
 qFrameRGB->linesize);
 block(buffer,width,heigth,[NSString stringWithFormat:@"%lld",qFrame->pts]);
 }
 }
 }
 }
 av_packet_unref(&qPacket);
 }
 av_free(buffer);
 av_frame_free(&qFrameRGB);
 av_frame_free(&qFrame);
 sws_freeContext(qSwsCtx);
 avcodec_close(qCodeCtx);
 avformat_close_input(&qFormatCtx);
}

这样就可以实现多线程的解码了,由于机器为双核,经测最后多线程解码的时间缩减为11s,还是很可观的。鉴于大部分视频长度都在30s左右,解码时间可以控制在五六秒的范围能,对于用户体验有不少的提升。

或者直接:av_dict_set(&opt, “threads”, “auto”, 0);

也可以实现多线程解码,当然这个是ffmpeg内部实现的。

文章首发于我的博客(yangf.vip)

相关推荐

用Python轻松修改Word文件的作者和时间,打造自己的专属效率工具

你是否曾经遇到过需要批量修改Word文件的作者、创建时间或修改时间的情况?手动操作不仅费时费力,还容易出错。可以用Python编写一个小工具,轻松解决这个问题!无论你是编程新手还是有一定经验的...

插件开发js代码划分(js插件编写)

在开发Chrome插件时,将JavaScript代码拆分成多个模块而非集中放置,主要基于性能优化、可维护性提升和浏览器插件特性适配等多方面的考量。以下是具体原因及区别分析:一、拆分的核心原因...

5分钟掌握Python中的标准输入、标准输出、标准错误

读取用户输入从标准输入获取输入:user_input=input("Impartyourwisdom:")print(f"Youshared:{user_input}")...

高大上的解答:在 &#39;packages.pyi&#39; 中找不到引用 &#39;urllib3&#39;

DeepSeek的一句代码:...

Flask 入门教程(flask快速入门)

目录什么是Flask?环境配置与安装第一个Flask应用:HelloWorld路由与视图函数模板与Jinja2表单处理与用户输入...

每日一库之 Go 语言开发者的神器—Gotx

点击上方蓝色“Go语言中文网”关注我们,领全套Go资料,每天学习Go语言简介Gotx是一个Go语言(Golang)的解释器和运行环境,只有单个可执行文件,绿色、跨平台,无需安装任何Go语言环境就可...

MySQL性能调优工具包制作(mysql性能调整)

一、最终工具包内容mysql_tuning_toolkit/├──scripts/#核心脚本│├──sysbench-pro.sh#...

掌握TensorFlow核心用法:从安装到实战的完整指南

一、为什么TensorFlow值得学习?作为全球使用最广泛的开源机器学习框架,TensorFlow已累计获得超过17万GitHub星标,支撑着Google搜索、Waymo自动驾驶、NASA卫星图像分析...

如何把PY 打包成EXE安装文件(pypy 打包exe)

将Python脚本打包成EXE文件通常使用第三方工具实现,以下是详细步骤和注意事项:...

Pygame Zero 详细使用教程(python zerorpc)

PygameZero是一个基于Pygame的简化游戏开发框架,特别适合初学者和快速原型开发。它隐藏了许多底层的复杂性,使得开发者可以更专注于游戏逻辑的实现。本文将通过分析提供的代码,详细介绍如...

Stable diffusion AI画图辅助脚本 Script 的使用(二)

本篇为脚本使用介绍的第二部分,主要介绍Promptmatrix提示词矩阵以及UltimateSDUpscale终极SD放大这两个脚本,同时也简单介绍一下如何编写自己的脚本。1、Promp...

一文明白Python 的import如何工作

Pythonimport系统的基础知识Python的import系统是该语言设计的关键部分,允许模块化编程和代码的轻松重用。了解这个系统对任何Python程序员都很重要,因为它决定了代码的结构...

Highlight.js - 前端的代码语法高亮库

千辛万苦写了篇技术分享,贴了一堆代码,兴高采烈地发到了自己的博客网站上。结果却发现代码全是白底黑字,字体还难看得很,你瞬间就没了兴致。能不能让网页也能像IDE那样,做带语法高亮的炫酷显示呢?来看一...

xbox xsx/s ps2模拟器 战神12,北欧女神2 配置教程

xsxxss下载PS2独立模拟器,Retroarch全能模拟器地址。...

RetroArch 着色器、金手指怎么用? 重返复古游戏萤幕滤镜效果

自从上次分享RetroArch模拟器的一些技巧后,许多模拟器新用户对老旧游戏机感到好奇,为什么游戏画面看起来会有很多马赛克。这主要是因为当年的游戏开发商是针对当时的屏幕进行设计的,所以在现在的高分辨率...