diff --git a/README.md b/README.md index 18d7f83..e4f2156 100644 --- a/README.md +++ b/README.md @@ -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 ``` \ No newline at end of file diff --git a/src/mpvopts.hpp b/src/mpvopts.hpp index 2e44d70..08dbd67 100644 --- a/src/mpvopts.hpp +++ b/src/mpvopts.hpp @@ -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;