Go to file
Oystein Kristoffer Tveit c129e5104d
Build and test / build (push) Successful in 1m54s Details
Build and test / check (push) Successful in 1m56s Details
Build and test / test (push) Successful in 3m25s Details
Build and test / docs (push) Successful in 2m26s Details
.gitea/workflows: adjust rsync action url
2024-08-21 07:19:24 +02:00
.gitea/workflows .gitea/workflows: adjust rsync action url 2024-08-21 07:19:24 +02:00
examples rename project from `mpvipc` to `mpvipc-async` 2024-08-03 17:07:09 +02:00
scripts use nextest for running tests 2024-05-04 00:23:00 +02:00
src fix inverted switch for `MpvExt::set_playback` 2024-08-03 21:02:46 +02:00
tests cargo fmt + clippy 2024-08-03 17:07:52 +02:00
.envrc .envrc: init 2024-08-02 18:20:31 +02:00
.gitignore Stage .gitignore 2017-05-22 18:56:11 +02:00
COPYING Initial commit 2017-05-22 18:31:20 +02:00
Cargo.toml Cargo.toml: use real name for co-author 2024-08-03 17:07:13 +02:00
README.md switch default branch from `master` to `main` 2024-08-03 17:07:50 +02:00
flake.lock nix support 2024-04-19 00:59:22 +02:00
flake.nix flake: fix `RUST_SRC_PATH`, add `x86_64-darwin` to systems 2024-05-05 14:06:21 +02:00

README.md

Coverage Docs

mpvipc-async

NOTE: This is a fork of gitlab.com/mpv-ipc/mpvipc, which introduces a lot of changes to be able to use the library asynchronously with tokio.


A small library which provides bindings to control existing mpv instances through sockets.

Dependencies

  • mpv (runtime dependency)
  • cargo-nextest (optional test depencency)
  • grcov (optional test depencency)

Example

Make sure mpv is started with the following option:

$ mpv --input-ipc-server=/tmp/mpv.sock --idle

Here is a small code example which connects to the socket /tmp/mpv.sock and toggles playback.

use mpvipc_async::*;

#[tokio::main]
async fn main() -> Result<(), MpvError> {
    let mpv = Mpv::connect("/tmp/mpv.sock").await?;
    let paused: bool = mpv.get_property("pause").await?;
    mpv.set_property("pause", !paused).await.expect("Error pausing");
}