Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 252 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 252 Bytes

decklink-rs

This crate wraps the DeckLink SDK. To iterate connected devices, for example, you could just do something like this:

for device in decklink::Iterator::new().unwrap() {
    println!("{}", device.get_model_name().unwrap());
}