목록2024/10/17 (1)
반업주부의 일상 배움사
[Rust] 유튜브 다운로드
macOS (애플 실리콘) 기준이에요. 아래 파일 저장해서 컴파일 한 다음 실행하면 되요. youtube-downloader.rsuse std::process::Command;use std::io::{self, Write};use std::path::Path;fn check_program_installed(program: &str, version_check: &str) -> bool { Command::new(program) .arg(version_check) .output() .map(|output| output.status.success()) .unwrap_or(false)}fn install_yt_dlp() -> Result> { if ..
IT 인터넷/일반
2024. 10. 17. 14:30