silk but the repo is also silk?The CLI binary is named silk (x-cmd style: short and memorable).
The repo is also ljh-sh/silk to match. The Rust crate is still
silk-convert (for cargo install to work without conflict with the
generic silk crate name on crates.io).
Yes. Once the binary is on your $PATH, you can call it directly:
silk decode voice.silk -o voice.wav
For a proper x silk module, see x-cmd.
No network calls. No telemetry. No auto-update. The only C code linked is the SILK SDK (4 FFI functions, all bounded). See SECURITY.md.
Because both use the same C SILK SDK under the hood. The actual decode is similar speed. The Rust binary wins because it has zero Python interpreter startup — when you process 100 files in a loop, Python pays 100× startup tax. The Rust binary pays once.
Pre-built binaries are not yet shipped for ARM64 Linux. You can build from
source with cargo build --release on any platform with Rust 1.74+.
They are the same codec, just framed differently. WeChat uses the v3 framing
with a 10-byte #!SILK_V3 header (and an extra 0x02 byte prepended by some
clients). The decoder handles both.
The C SDK will return an error. The Rust wrapper surfaces it as a clear error message. v0.4 will add better diagnostics.
Yes, just call the binary via subprocess. For a pure-Python alternative, use pysilk directly.
See SECURITY.md.