Go to file
2024-12-14 13:52:57 +01:00
.gitea/workflows .gitea/build-and-test: enable cache 2024-12-12 14:47:55 +01: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 core: add docstrings for variants of MpvCommand 2024-12-14 13:52:57 +01:00
tests treewide: fix type for property change event ids 2024-12-14 13:51:12 +01:00
.envrc .envrc: init 2024-08-02 18:20:31 +02:00
.gitignore Stage .gitignore 2017-05-22 18:56:11 +02:00
Cargo.toml Move repo to Projects, some pipeline updates 2024-12-12 14:47:55 +01:00
COPYING Initial commit 2017-05-22 18:31:20 +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 Move repo to Projects, some pipeline updates 2024-12-12 14:47:55 +01:00

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");
}