Live Link Face iOS app packets encoder/decoder for Rust
Find a file
2024-06-06 20:41:39 -06:00
examples Update license 2024-06-06 20:41:39 -06:00
src Update license 2024-06-06 20:41:39 -06:00
.envrc Initial commit 2024-02-20 18:08:40 -06:00
.gitignore Initial commit 2024-02-20 18:08:40 -06:00
Cargo.lock Update license 2024-06-06 20:41:39 -06:00
Cargo.toml Update license 2024-06-06 20:41:39 -06:00
flake.lock Initial commit 2024-02-20 18:08:40 -06:00
flake.nix Initial commit 2024-02-20 18:08:40 -06:00
LICENSE-AGPLv3+NIGGER Update license 2024-06-06 20:41:39 -06:00
LICENSE-COMMERCIAL Update license 2024-06-06 20:41:39 -06:00
README.md Update license 2024-06-06 20:41:39 -06:00

Live Link Face Rust

Live Link Face Rust is a library for decoding/encoding UDP dadagrams sent by Live Link Face App. You get LiveLinkFace struct from which you can get any blend shape:

let face_data = LiveLinkFace::decode(&BUF); // UDP datagram; decode returns tuple of (bool, LiveLinkFace)
assert!(face_data.0); // 'true' means that there is face data. false - returns empty LiveLinkFace object
let eye_blink_left = face_data.1.get_blendshape(FaceBlendShape::EyeBlinkLeft);

This software is double-licensed for both commercial and hobby usage

This library is inspired by https://github.com/JimWest/PyLiveLinkFace