Agora 云录制自定义布局不起作用

Agora cloud recording custom layout not working

uid 传递时,Agora 没有抓取自定义布局中的视频流。它跳过传递 uid 的流。

这是我正在使用的三个视频流的示例布局,它只捕获两个没有 uid 的视频流。

我传递的 uid 是根据云记录中的文档,它是 32 位整数。 uid是手动生成的,不是Agora生成的。

前 15 秒布局

"layoutConfig": [
                    {
                        "x_axis": 0.0,
                        "y_axis": 0.0,
                        "width": 1.0,
                        "height": 0.8,
                        "alpha": 1.0,
                        "render_mode": 1
                    },
                    {
                        "x_axis": 0.0,
                        "y_axis": 0.8,
                        "width": 0.5,
                        "height": 0.2,
                        "alpha": 1.0,
                        "render_mode": 1
                    },
                    {
                        "uid": "99142190",
                        "x_axis": 0.5,
                        "y_axis": 0.8,
                        "width": 0.5,
                        "height": 0.2,
                        "alpha": 1.0,
                        "render_mode": 1
                    }
                ]

laout 最后 15 秒

"layoutConfig": [
            {
                "x_axis": 0.0,
                "y_axis": 0.0,
                "width": 1.0,
                "height": 0.8,
                "alpha": 1.0,
                "render_mode": 1
            },
            {
                "uid": "99142190",
                "x_axis": 0.0,
                "y_axis": 0.8,
                "width": 0.5,
                "height": 0.2,
                "alpha": 1.0,
                "render_mode": 1
            },
            {
                "x_axis": 0.5,
                "y_axis": 0.8,
                "width": 0.5,
                "height": 0.2,
                "alpha": 1.0,
                "render_mode": 1
            }
        ]

使用自定义布局和自定义生成的 uid 的 Agora 云录制无法正常工作。 需要使用 agora 生成的 uid's 在云录制中自定义布局录制。