Fixed typos in README, added TODO in mpvopts.hpp

This commit is contained in:
Baldomo
2020-12-07 18:58:25 +01:00
parent 94861f36bb
commit 1a454608ab
2 changed files with 3 additions and 2 deletions

View File

@@ -27,8 +27,8 @@ The table below is a simple documentation of the URL query keys and values used
| `flags` | `--vo%3Dgpu` | Custom command options and flags to be passed to the video player |
### Playlist and `enqueue` functionality
For `enqueue` to work properly with any mpv-based player, the playes has to be able to read commands from a `fifo` name pipe. This can be achieved by adding the following line to the video player's configuration (usually `.conf/mpv/mpv.conf` for mpv).
For `enqueue` to work properly with any mpv-based player (provided it supports mpv's IPC), the player has to read commands from a socket. This can be achieved by adding the following line to the video player's configuration (usually `.conf/mpv/mpv.conf` for mpv).
```
```conf
input-ipc-server=/tmp/mpvsocket
```

View File

@@ -32,6 +32,7 @@ public:
};
mpvoptions::mpvoptions() {
// TODO: add custom flag options, custom player etc
this->curlu = curl_url();
this->fullscreen = false;
this->pip = false;