From 6879976d47a218c0f48a2fd33d11d154f1fbbb8f Mon Sep 17 00:00:00 2001 From: Raymond Hogenson Date: Wed, 22 Aug 2018 16:46:09 -0400 Subject: Play a better song If we write our own music, we could just embed it --- src/music.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/music.rs b/src/music.rs index 90cd276..0009479 100644 --- a/src/music.rs +++ b/src/music.rs @@ -6,7 +6,7 @@ pub struct Player { 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() { + match std::process::Command::new("mpv").arg("https://www.youtube.com/watch?v=3bNITQR4Uso").arg("--no-video").stdin(std::process::Stdio::null()).spawn() { Ok(child) => { self.player = Some(child); Ok(()) -- cgit v1.3.1