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

FFmpeg 7.0 flv支持hdr ffmpeg 4.4

csdh11 2024-12-23 09:26 17 浏览

本文为转载,原作者:小新快跑/音视频小话

自从ffmpeg6.0应用enhance rtmp支持h265/av1的flv格式后,7.0迎来了flv的hdr能力。本文介绍ffmpeg7.0如何支持hdr in flv。

enhance rtmp关于hdr

文档[enhance-rtmp-v2.md](https://github.com/veovera/enhanced-rtmp/blob/main/docs/enhanced/enhanced-rtmp-v2.md)中,metadata-frame章节规定相关支持HDR部分。

定义一个新的VideoPacketType.Metadata,其内容为AMF格式的metadata(AMF是一种简便的描述格式,非常节省内存),具体内部有HDR相关的colorInfo数据(每次hdr参数更新的时候,就发送该metadata)。


type ColorInfo = {

colorConfig: {

// number of bits used to record the color channels for each pixel

bitDepth:                 number, // SHOULD be 8, 10 or 12



//

// colorPrimaries, transferCharacteristics and matrixCoefficients are defined

// in ISO/IEC 23091-4/ITU-T H.273. The values are an index into

// respective tables which are described in “Colour primaries”,

// "Transfer characteristics" and "Matrix coefficients" sections.

// It is RECOMMENDED to provide these values.

//



// indicates the chromaticity coordinates of the source color primaries

colorPrimaries:           number, // enumeration [0-255]



// opto-electronic transfer characteristic function (ex. PQ, HLG)

transferCharacteristics:  number, // enumeration [0-255]



// matrix coefficients used in deriving luma and chroma signals

matrixCoefficients:       number, // enumeration [0-255]

},



hdrCll: {

//

// maximum value of the frame average light level

// (in 1 cd/m2) of the entire playback sequence

//

maxFall:  number,     // [0.0001-10000]



//

// maximum light level of any single pixel (in 1 cd/m2)

// of the entire playback sequence

//

maxCLL:   number,     // [0.0001-10000]

},



//

// The hdrMdcv object defines mastering display (i.e., where

// creative work is done during the mastering process) color volume (a.k.a., mdcv)

// metadata which describes primaries, white point and min/max luminance. The

// hdrMdcv object SHOULD be provided.

//

// Specification of the metadata along with its ranges adhere to the

// ST 2086:2018 - SMPTE Standard (except for minLuminance see

// comments below)

//

hdrMdcv: {

//

// Mastering display color volume (mdcv) xy Chromaticity Coordinates within CIE

// 1931 color space.

//

// Values SHALL be specified with four decimal places. The x coordinate SHALL

// be in the range [0.0001, 0.7400]. The y coordinate SHALL be

// in the range [0.0001, 0.8400].

//

redX:         number,

redY:         number,

greenX:       number,

greenY:       number,

blueX:        number,

blueY:        number,

whitePointX:  number,

whitePointY:  number,



//

// max/min display luminance of the mastering display (in 1 cd/m2 ie. nits)

//

// note: ST 2086:2018 - SMPTE Standard specifies minimum display mastering

// luminance in multiples of 0.0001 cd/m2.

//

// For consistency we specify all values

// in 1 cd/m2. Given that a hypothetical perfect screen has a peak brightness

// of 10,000 nits and a black level of .0005 nits we do not need to

// switch units to 0.0001 cd/m2 to increase resolution on the lower end of the

// minLuminance property. The ranges (in nits) mentioned below suffice

// the theoretical limit for Mastering Reference Displays and adhere to the

// SMPTE ST 2084 standard (a.k.a., PQ) which is capable of representing full gamut

// of luminance level.

//

maxLuminance: number,     // [5-10000]

minLuminance: number,     // [0.0001-5]

},

}

flv mux

在libavformat/flvenc.c中,新增flv_write_metadata_packet函数,用于添加metadata。

flv的数据结构:

typedef struct FLVContext {

.....

int metadata_pkt_written;//0: 还未写过,需要写;1: 写过了,不需要写。

} FLVContext;

在函数flv_write_metadata_packet中实现,见注释:


static void flv_write_metadata_packet(AVFormatContext *s, AVCodecParameters *par, unsigned int ts) {

FLVContext *flv = s->priv_data;



//不需要写入,就返回;可以通过设置这个标志变量来使能/去使能更新写metadata

if (flv->metadata_pkt_written)

return;

//支持h265, av1, vp9

if (par->codec_id == AV_CODEC_ID_HEVC || par->codec_id == AV_CODEC_ID_AV1 || par->codec_id == AV_CODEC_ID_VP9) {

......

//写入tag头,标识其为视频

avio_w8(pb, FLV_TAG_TYPE_VIDEO); //write video tag type

metadata_size_pos = avio_tell(pb);

avio_wb24(pb, 0 + flags_size);

put_timestamp(pb, ts); //ts = pkt->dts, gen

avio_wb24(pb, flv->reserved);



//根据enhance rtmp标志,写入FLV_IS_EX_HEADER标识,和fourCC的字段(hvc1 or av01 or vp09)

if (par->codec_id == AV_CODEC_ID_HEVC) {

avio_w8(pb, FLV_IS_EX_HEADER | PacketTypeMetadata| FLV_FRAME_VIDEO_INFO_CMD); // ExVideoTagHeader mode with PacketTypeMetadata

avio_write(pb, "hvc1", 4);

} else if (par->codec_id == AV_CODEC_ID_AV1 || par->codec_id == AV_CODEC_ID_VP9) {

avio_w8(pb, FLV_IS_EX_HEADER | PacketTypeMetadata| FLV_FRAME_VIDEO_INFO_CMD);

avio_write(pb, par->codec_id == AV_CODEC_ID_AV1 ? "av01" : "vp09", 4);

}

//下面为写入AMF格式的hdr相关的colorInfo数据

avio_w8(pb, AMF_DATA_TYPE_STRING);

put_amf_string(pb, "colorInfo");



avio_w8(pb, AMF_DATA_TYPE_OBJECT);



put_amf_string(pb, "colorConfig");  // colorConfig



avio_w8(pb, AMF_DATA_TYPE_OBJECT);



if (par->color_trc != AVCOL_TRC_UNSPECIFIED &&

par->color_trc < AVCOL_TRC_NB) {

put_amf_string(pb, "transferCharacteristics");  // color_trc

put_amf_double(pb, par->color_trc);

}



if (par->color_space != AVCOL_SPC_UNSPECIFIED &&

par->color_space < AVCOL_SPC_NB) {

put_amf_string(pb, "matrixCoefficients"); // colorspace

put_amf_double(pb, par->color_space);

}



if (par->color_primaries != AVCOL_PRI_UNSPECIFIED &&

par->color_primaries < AVCOL_PRI_NB) {

put_amf_string(pb, "colorPrimaries"); // color_primaries

put_amf_double(pb, par->color_primaries);

}



put_amf_string(pb, "");

avio_w8(pb, AMF_END_OF_OBJECT);



if (lightMetadata) {

put_amf_string(pb, "hdrCll");

avio_w8(pb, AMF_DATA_TYPE_OBJECT);



put_amf_string(pb, "maxFall");

put_amf_double(pb, lightMetadata->MaxFALL);



put_amf_string(pb, "maxCLL");

put_amf_double(pb, lightMetadata->MaxCLL);



put_amf_string(pb, "");

avio_w8(pb, AMF_END_OF_OBJECT);

}



if (displayMetadata && (displayMetadata->has_primaries || displayMetadata->has_luminance)) {

put_amf_string(pb, "hdrMdcv");

avio_w8(pb, AMF_DATA_TYPE_OBJECT);

if (displayMetadata->has_primaries) {

put_amf_string(pb, "redX");

put_amf_double(pb, av_q2d(displayMetadata->display_primaries[0][0]));



put_amf_string(pb, "redY");

put_amf_double(pb, av_q2d(displayMetadata->display_primaries[0][1]));



put_amf_string(pb, "greenX");

put_amf_double(pb, av_q2d(displayMetadata->display_primaries[1][0]));



put_amf_string(pb, "greenY");

put_amf_double(pb, av_q2d(displayMetadata->display_primaries[1][1]));



put_amf_string(pb, "blueX");

put_amf_double(pb, av_q2d(displayMetadata->display_primaries[2][0]));



put_amf_string(pb, "blueY");

put_amf_double(pb, av_q2d(displayMetadata->display_primaries[2][1]));



put_amf_string(pb, "whitePointX");

put_amf_double(pb, av_q2d(displayMetadata->white_point[0]));



put_amf_string(pb, "whitePointY");

put_amf_double(pb, av_q2d(displayMetadata->white_point[1]));

}

if (displayMetadata->has_luminance) {

put_amf_string(pb, "maxLuminance");

put_amf_double(pb, av_q2d(displayMetadata->max_luminance));



put_amf_string(pb, "minLuminance");

put_amf_double(pb, av_q2d(displayMetadata->min_luminance));

}

put_amf_string(pb, "");

avio_w8(pb, AMF_END_OF_OBJECT);

}

put_amf_string(pb, "");

avio_w8(pb, AMF_END_OF_OBJECT);



flv->metadata_pkt_written = 1;//标识写过了

}

}

其中HDR的数据来源为AVCodecParameters *par数据结构中的内容:

typedef struct AVCodecParameters {

....

/**

* Video only. Additional colorspace characteristics.

*/

enum AVColorRange                  color_range;

enum AVColorPrimaries              color_primaries;

enum AVColorTransferCharacteristic color_trc;

enum AVColorSpace                  color_space;

enum AVChromaLocation              chroma_location;



/*

* 类型: AV_PKT_DATA_CONTENT_LIGHT_LEVEL, 数据: AVContentLightMetadata* lightMetadata

* 类型: AV_PKT_DATA_MASTERING_DISPLAY_METADATA, 数据: AVMasteringDisplayMetadata *displayMetadata

*/

AVPacketSideData *coded_side_data;

....

}

flv demux

解析函数在libavformat/flvdec.c文件中,函数amf_parse_object中。

static int amf_parse_object(AVFormatContext *s, AVStream *astream,

AVStream *vstream, const char *key,

int64_t max_pos, int depth)
{

FLVMetaVideoColor *meta_video_color = flv->metaVideoColor;

......

if (meta_video_color) {

if (amf_type == AMF_DATA_TYPE_NUMBER ||

amf_type == AMF_DATA_TYPE_BOOL) {

if (!strcmp(key, "colorPrimaries")) {

meta_video_color->primaries = num_val;

} else if (!strcmp(key, "transferCharacteristics")) {

meta_video_color->transfer_characteristics = num_val;

} else if (!strcmp(key, "matrixCoefficients")) {

meta_video_color->matrix_coefficients = num_val;

} else if (!strcmp(key, "maxFall")) {

meta_video_color->max_fall = num_val;

} else if (!strcmp(key, "maxCLL")) {

meta_video_color->max_cll = num_val;

} else if (!strcmp(key, "redX")) {

meta_video_color->mastering_meta.r_x = num_val;

} else if (!strcmp(key, "redY")) {

meta_video_color->mastering_meta.r_y = num_val;

} else if (!strcmp(key, "greenX")) {

meta_video_color->mastering_meta.g_x = num_val;

} else if (!strcmp(key, "greenY")) {

meta_video_color->mastering_meta.g_y = num_val;

} else if (!strcmp(key, "blueX")) {

meta_video_color->mastering_meta.b_x = num_val;

} else if (!strcmp(key, "blueY")) {

meta_video_color->mastering_meta.b_y = num_val;

} else if (!strcmp(key, "whitePointX")) {

meta_video_color->mastering_meta.white_x = num_val;

} else if (!strcmp(key, "whitePointY")) {

meta_video_color->mastering_meta.white_y = num_val;

} else if (!strcmp(key, "maxLuminance")) {

meta_video_color->mastering_meta.max_luminance = num_val;

} else if (!strcmp(key, "minLuminance")) {

meta_video_color->mastering_meta.min_luminance = num_val;

}

}

}

......

}

相关推荐

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