aboutsummaryrefslogtreecommitdiff
path: root/video_player/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'video_player/README.md')
-rw-r--r--video_player/README.md27
1 files changed, 26 insertions, 1 deletions
diff --git a/video_player/README.md b/video_player/README.md
index 9a74c9c..0d0adeb 100644
--- a/video_player/README.md
+++ b/video_player/README.md
@@ -56,9 +56,34 @@ Add a subtitle file/url that is loaded asynchronously
"request_id": 233 // Optional. Its provided if request_id was provided in the request
}
```
+## cycle-fullscreen
+Return seeking position in file in seconds
+### request
+```
+{
+ "command": "cycle-fullscreen",
+ "request_id": 232 // Optional
+}
+```
+### response on success
+```
+{
+ "status": "success",
+ "request_id": 232, // Optional. Its provided if request_id was provided in the request
+}
+```
+### response on error
+```
+{
+ "status": "error",
+ "message": "error message",
+ "request_id": 233 // Optional. Its provided if request_id was provided in the request
+}
+```
# IPC event
```
{
- "event": "file-loaded"
+ "event": "file-loaded",
+ "args": [] // A list of strings
}
``` \ No newline at end of file