2017-05-29 17:54:12 +02:00
|
|
|
# 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:
|
|
|
|
`
|
2022-07-10 15:34:14 +02:00
|
|
|
$ mpv --input-ipc-server=/tmp/mpv.sock --idle ...
|
2017-05-29 17:54:12 +02:00
|
|
|
`
|
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
|
|
|
- `mpv`
|
|
|
|
- `cargo` (makedep)
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
- [Cargo](https://crates.io/crates/mpvipc)
|
|
|
|
|
|
|
|
You can use this package with cargo.
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
Make sure mpv is started with the following option:
|
|
|
|
`
|
2022-07-10 15:34:14 +02:00
|
|
|
$ mpv --input-ipc-server=/tmp/mpv.sock --idle
|
2017-05-29 17:54:12 +02:00
|
|
|
`
|
|
|
|
|
2022-07-10 15:34:14 +02:00
|
|
|
Here is a small code example which connects to the socket /tmp/mpv.sock and toggles playback.
|
2017-05-29 17:54:12 +02:00
|
|
|
|
2022-07-10 15:34:14 +02:00
|
|
|
```rust
|
2017-05-29 17:55:06 +02:00
|
|
|
extern crate mpvipc;
|
|
|
|
|
2017-05-29 17:54:12 +02:00
|
|
|
use mpvipc::*;
|
|
|
|
use std::sync::mpsc::channel;
|
|
|
|
|
|
|
|
fn main() {
|
2022-07-10 15:34:14 +02:00
|
|
|
let mpv = Mpv::connect("/tmp/mpv.sock").unwrap();
|
2017-05-29 17:54:12 +02:00
|
|
|
let paused: bool = mpv.get_property("pause").unwrap();
|
|
|
|
mpv.set_property("pause", !paused).expect("Error pausing");
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2023-08-22 13:05:32 +02:00
|
|
|
For a more extensive example and proof of concept, see project [mpvc](https://gitlab.com/mpv-ipc/mpvc).
|
2017-05-29 17:54:12 +02:00
|
|
|
|
|
|
|
## Bugs / Ideas
|
|
|
|
|
2022-07-10 15:34:14 +02:00
|
|
|
Check out the [Issue Tracker](https://gitlab.com/mpv-ipc/mpvipc/issues)
|