#music-player #mpd-client #daemon

mpd

A client library for MPD (music player daemon), like libmpdclient but in Rust

12 releases

0.1.0 Jul 9, 2023
0.0.12 Jun 23, 2017
0.0.11 Jan 25, 2016
0.0.7 Jun 26, 2015
0.0.2 Jan 24, 2015

#127 in Audio

Download history 256/week @ 2024-06-17 258/week @ 2024-06-24 48/week @ 2024-07-01 176/week @ 2024-07-08 256/week @ 2024-07-15 252/week @ 2024-07-22 208/week @ 2024-07-29 173/week @ 2024-08-05 276/week @ 2024-08-12 142/week @ 2024-08-19 318/week @ 2024-08-26 183/week @ 2024-09-02 217/week @ 2024-09-09 215/week @ 2024-09-16 253/week @ 2024-09-23 190/week @ 2024-09-30

896 downloads per month
Used in 19 crates (17 directly)

MIT/Apache

95KB
2K SLoC

rust-mpd

Pure Rust version of libmpdclient.

Full documentation

Example

Add to Cargo.toml:

[dependencies]
mpd = "*"

Then just use:

extern crate mpd;

use mpd::Client;

let mut conn = Client::connect("127.0.0.1:6600").unwrap();
conn.volume(100).unwrap();
conn.load("My Lounge Playlist", ..).unwrap();
conn.play().unwrap();
println!("Status: {:?}", conn.status());

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~185KB