h7x4 c4b77dd198
Some checks failed
Build and test / build (push) Successful in 54s
Build and test / check (push) Successful in 55s
Build and test / docs (push) Successful in 1m24s
Build and test / test (push) Failing after 2m9s
Change rust edition from 2021 -> 2024
2025-12-15 09:52:24 +09:00
2024-05-04 00:23:00 +02:00
2025-12-15 09:52:24 +09:00
2024-08-02 18:20:31 +02:00
2017-05-22 18:56:11 +02:00
2017-05-22 18:31:20 +02:00
2025-12-15 09:13:53 +09:00
2025-12-15 09:47:26 +09: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");
}
2024-08-04 00:34:54 +02:00
Languages
Rust 98.4%
Nix 1%
Shell 0.6%