Go to file
Jonas Frei 1c9e32671e Updated examples to use adapted observe command 2022-07-10 15:32:04 +02:00
examples Updated examples to use adapted observe command 2022-07-10 15:32:04 +02:00
src Added Observe/Unobserve MpvCommand. 2022-07-10 15:23:58 +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 Publishing newest master, bumping version 2020-10-24 07:01:14 +02:00
README.md Switch from Github to GitLab 2017-07-14 01:21:09 +02:00

README.md

mpvipc

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

To make use of this library, please make sure mpv is started with the following option: $ mpv --input-ipc-server=/tmp/mpvsocket --idle ...

Dependencies

  • mpv
  • cargo (makedep)

Install

You can use this package with cargo.

Example

Make sure mpv is started with the following option: $ mpv --input-ipc-server=/tmp/mpvsocket --idle

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

extern crate mpvipc;

use mpvipc::*;
use std::sync::mpsc::channel;

fn main() {
    let mpv = Mpv::connect("/tmp/mpvsocket").unwrap();
    let paused: bool = mpv.get_property("pause").unwrap();
    mpv.set_property("pause", !paused).expect("Error pausing");
}

For a more extensive example and proof of concept, see project mpvc.

Bugs / Ideas

Check out the Issue Tracker