From f61c1902e30b0ab54e833960df7d2d79c8b62120 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Thu, 12 Oct 2023 17:11:05 +0800
Subject: [PATCH] 执行时间
---
src/main/java/com/dji/sample/manage/service/ILiveStreamService.java | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/src/main/java/com/dji/sample/manage/service/ILiveStreamService.java b/src/main/java/com/dji/sample/manage/service/ILiveStreamService.java
index 2d1ac98..97ae5d4 100644
--- a/src/main/java/com/dji/sample/manage/service/ILiveStreamService.java
+++ b/src/main/java/com/dji/sample/manage/service/ILiveStreamService.java
@@ -16,6 +16,7 @@
/**
* Get all the drone data that can be broadcast live in this workspace.
+ * 获取所有可以在这个工作区中直播的无人机数据。
* @param workspaceId
* @return
*/
@@ -24,11 +25,13 @@
/**
* Save live capability data.
* @param liveCapacityReceiver
+ * @param timestamp
*/
- void saveLiveCapacity(LiveCapacityReceiver liveCapacityReceiver);
+ void saveLiveCapacity(LiveCapacityReceiver liveCapacityReceiver, Long timestamp);
/**
* Initiate a live streaming by publishing mqtt message.
+ * 通过发布mqtt消息启动实时流。
* @param liveParam Parameters needed for on-demand.
* @return
*/
@@ -36,6 +39,7 @@
/**
* Stop the live streaming by publishing mqtt message.
+ * 通过发布mqtt消息来停止实时流。
* @param videoId
* @return
*/
@@ -47,4 +51,11 @@
* @return
*/
ResponseResult liveSetQuality(LiveTypeDTO liveParam);
+
+ /**
+ * Switches the lens of the device during the live streaming.
+ * @param liveParam
+ * @return
+ */
+ ResponseResult liveLensChange(LiveTypeDTO liveParam);
}
--
Gitblit v1.9.3