ffmpuzzle 0.1.1

The daily FFmpeg encoding puzzle - CLI edition
1
2
3
4
5
6
pub fn copy_to_clipboard(text: &str) -> bool {
    match arboard::Clipboard::new() {
        Ok(mut clip) => clip.set_text(text).is_ok(),
        Err(_) => false,
    }
}