Go to file
Oystein Kristoffer Tveit f5ca2ebde9
Build and test / check (pull_request) Successful in 1m56s Details
Build and test / build (pull_request) Successful in 1m57s Details
Build and test / docs (pull_request) Successful in 2m30s Details
Build and test / test (pull_request) Successful in 4m0s Details
Build and test / check (push) Successful in 1m55s Details
Build and test / build (push) Successful in 1m56s Details
Build and test / docs (push) Successful in 3m2s Details
Build and test / test (push) Successful in 3m59s Details
add more tests, fix event/command response race condition
2024-05-01 23:45:42 +02:00
.gitea/workflows workflow: generate test reports and docs 2024-05-01 22:22:46 +02:00
examples cargo fmt + clippy 2024-04-30 02:13:57 +02:00
scripts add script to create coverage report manually 2024-05-01 23:45:41 +02:00
src add more tests, fix event/command response race condition 2024-05-01 23:45:42 +02:00
tests add more tests, fix event/command response race condition 2024-05-01 23:45:42 +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 add more tests, fix event/command response race condition 2024-05-01 23:45:42 +02:00
README.md workflow: generate test reports and docs 2024-05-01 22:22:46 +02:00
flake.lock nix support 2024-04-19 00:59:22 +02:00
flake.nix add script to create coverage report manually 2024-05-01 23:45:41 +02:00

README.md

Coverage Docs

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/mpv.sock --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/mpv.sock --idle

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

extern crate mpvipc;

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

fn main() {
    let mpv = Mpv::connect("/tmp/mpv.sock").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