aboutsummaryrefslogtreecommitdiff
path: root/video_player/README.md
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-03-05 07:16:25 +0100
committerdec05eba <dec05eba@protonmail.com>2022-03-05 07:23:15 +0100
commit63d18f733602f9b7381a03b72a17662a99c44fc2 (patch)
tree01992222bf601f8398b330a4bb08f9f0a98f4383 /video_player/README.md
parent8923e0d8f268462b2a7dfabe2545e1d6bda5615a (diff)
Fix video fullscreen button, double-click fullscreen
Fix video seekbar mouse collision not working for the top of the seekbar
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