如何在 Kurento 中找到现有的管道?

How to find existing pipeline in Kurento?

我有一个使用 kurento-client 进行集成的应用服务器。

具体来说,我将从 IP Cam 获取流并使用 PlayerEndpoint 和 RecorderEndpoint 进行录制。

现在,如果我的应用服务器是 dead/killed,KMS 中的管道将继续记录,我如何找到现有的管道?

附带问题,如何指示 KMS 以 15 分钟(或任何时间段)为单位记录流?我能想到的唯一方法可能是手动 start/stop RecorderEndpoint。

根据 Kurento 邮件列表的回答。

kurentoClient.getServerManager().getMediaPipelines()

https://www.programcreek.com/java-api-examples/?class=org.kurento.client.KurentoClient&method=getServerManager

Original answer