aboutsummaryrefslogtreecommitdiff
path: root/video_player/README.md
blob: 68697d9a9928cff32aee5d69312ad22037884f36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# QuickMedia Video Player
The video player internally used by QuickMedia. Uses libmpv.\
The video player window is embedded inside QuickMedia and QuickMedia and this video player communicate over a file descriptor (socketpair) using json (json without newline formatting; one command per line).
# IPC commands
## time-pos
Return seeking position in file in seconds
### request
```
{
    "command": "time-pos"
}
```
### response on success
```
{
    "status": "success",
    "data": 112.432
}
```
### response on error
```
{
    "status": "error",
    "message": "error message"
}
```
## sub-add
Add a subtitle file/url that is loaded asynchronously
### request
```
{
    "command": "sub-add",
    "data": {
        "file": "path/to/file/or/url",
        "title": "title",                   // Optional
        "language": "en_us"                 // Optional
    }
}
```
### response on success
```
{
    "status": "success"
}
```
### response on error
```
{
    "status": "error",
    "message": "error message"
}
```
# IPC event
```
{
    "name": "file-loaded"
}
```