dvdcss 0.1.2

Safe, Rust bindings to libdvdcss.
Documentation
1
2
3
4
5
6
use dvdcss::DVD;
use std::ffi::CStr;

fn main() {
    let _ = DVD::new(CStr::from_bytes_with_nul(b"/dev/sr0\0").unwrap()).expect("No DVD was found.");
}