safe libmpv bindings for Rust.
mpv is a media player based on MPlayer and mplayer2. It supports a wide variety of video file formats, audio and video codecs, and subtitle types.
The crate is a safe libmpv API binding in Rust. For more info about mpv, see here.
Online documentation for version 0.2.1 (19 July 2016) of this crate is available at this location
If the documentation is outdated and/or the crate is outdated (major changes to master), please submit an issue.
[dependencies]
mpv = "0.2"
the mpv package is needed for this to run.
On linux, you can ask your package manager to install it for you.
# pacman -S mpv
# apt-get install libmpv1
libmpv can be found here for windows. You need to copy the library into your rust binaries folder for it to be linked properly.
2 examples are available from the get go in this crate.
simple.rs will alow you to display a standard mpv player in a new window. Controls will be available.
$ cargo run --example simple
sdl2.rs will embed mpv in an sdl2 window. Controls will not be available and cannot be. If you want an interface on top of this player, you must draw your own with OpenGL calls or SDL2 calls.
$ cargo run --example sdl2
Any contribution is welcome, as well as any code review !
Any question concerning the mpv-rs API is welcome in the issues.
If your mpv crashes, please make sure it's coming from this Rust binding and not from the mpv player itself.
mpv is globally licensed under GPLv2+ (see here), but this crate is licensed under the zlib license.
Relicensing is possible if it can be properly justified for whatever reason.