From efca4a20abba60b674097bc61601b43060536a3f Mon Sep 17 00:00:00 2001 From: shiyinweilai <739277193@qq.com> Date: Thu, 13 Mar 2025 18:30:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20(xgplayer-mp4)=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E4=BA=86=E5=BD=93AV1=E8=A7=86=E9=A2=91=E6=B5=81=E6=B2=A1?= =?UTF-8?q?=E6=9C=89colr=EF=BC=88=E9=A2=9C=E8=89=B2=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=EF=BC=89box=E6=97=B6=E5=87=BA=E7=8E=B0=E7=9A=84undefined?= =?UTF-8?q?=E9=94=99=E8=AF=AF=EF=BC=8C=E8=AF=A5=E9=94=99=E8=AF=AF=E4=BC=9A?= =?UTF-8?q?=E5=BD=B1=E5=93=8Dblob=E6=A8=A1=E5=BC=8F=E6=92=AD=E6=94=BE?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/xgplayer-transmuxer/src/mp4/mp4-parser.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/xgplayer-transmuxer/src/mp4/mp4-parser.js b/packages/xgplayer-transmuxer/src/mp4/mp4-parser.js index b177bc5e..2158753f 100644 --- a/packages/xgplayer-transmuxer/src/mp4/mp4-parser.js +++ b/packages/xgplayer-transmuxer/src/mp4/mp4-parser.js @@ -873,7 +873,9 @@ export class MP4Parser { v.codecType = VideoCodecType.AV1 v.codec = e1.av1C.codec v.av1C = e1.av1C.data - v.colr = e1.colr.data + if (e1.colr) { + v.colr = e1.colr.data + } } else if (e1.hvcC) { v.codecType = VideoCodecType.HEVC v.codec = e1.hvcC.codec