diff options
Diffstat (limited to 'src/music.rs')
| -rw-r--r-- | src/music.rs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/music.rs b/src/music.rs new file mode 100644 index 0000000..90cd276 --- /dev/null +++ b/src/music.rs @@ -0,0 +1,32 @@ +extern crate std; + +pub struct Player { + player: Option<std::process::Child>, +} + +impl Player { + pub fn play(&mut self) -> Result<(), &'static str> { + match std::process::Command::new("mpv").arg("https://www.youtube.com/watch?v=TdWd7Znz00Q").arg("--no-video").stdin(std::process::Stdio::null()).spawn() { + Ok(child) => { + self.player = Some(child); + Ok(()) + } + Err(_) => Err("Couldn't use mpv to play music") + } + } +} + +impl Drop for Player { + fn drop(&mut self) { + match self.player { + Some(ref mut x) => { + let _ = x.kill(); + } + None => { } + } + } +} + +pub fn new() -> Player { + Player { player: None } +} |
