media-device 0.9.1

A cross-platform wrapper for capture and playback devices
Documentation
1
2
3
4
5
6
7
8
use cfg_if::cfg_if;

cfg_if! {
    if #[cfg(feature = "video")] {
        pub mod direct_show;
        pub mod media_foundation;
    }
}