tauri-plugin-libmpv 0.2.2

A Tauri plugin for embedding the mpv player in your app via libmpv.
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() {
    tauri_plugin::Builder::new(&[
        "init",
        "destroy",
        "command",
        "set_property",
        "get_property",
        "set_video_margin_ratio",
    ])
    .android_path("android")
    .ios_path("ios")
    .build();
}