Crate mpvipc_async

Source
Expand description

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

Modulesยง

  • core_api ๐Ÿ”’
    The core API for interacting with Mpv.
  • error ๐Ÿ”’
    Library specific error messages.
  • event_parser ๐Ÿ”’
    JSON parsing logic for events from MpvIpc.
  • High-level API extension for Mpv.
  • ipc ๐Ÿ”’
    IPC handling thread/task. Handles communication between Mpv instances and mpvโ€™s unix socket
  • message_parser ๐Ÿ”’
    JSON parsing logic for command responses from MpvIpc.
  • property_parser ๐Ÿ”’
    JSON parsing logic for properties returned by [[Event::PropertyChange], and used internally in MpvExt to parse the response from Mpv::get_property().

Structsยง

Enumsยง

Traitsยง

Functionsยง