slint/examples/ffmpeg/main.rs
2025-08-28 16:44:02 +02:00

9 lines
269 B
Rust

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: MIT
// In order to be compatible with both desktop, wasm, and android, the example is both a binary and a library.
// Just forward to the library in main
fn main() {
ffmpeg_lib::main();
}