YAI-flash-recreation/src/balls.rs
2022-05-05 13:21:18 -05:00

19 lines
695 B
Rust

use std::fs::File;
use std::io::BufReader;
use rodio::{Decoder, OutputStream, source::Source};
pub fn play(x: &str) {
let (_stream, stream_handle) = OutputStream::try_default().unwrap();
// Load a sound from a file, using a path relative to Cargo.toml
let file = BufReader::new(File::open(x).unwrap());
// Decode that sound file into a source
let source = Decoder::new(file).unwrap();
// Play the sound directly on the device
stream_handle.play_raw(source.convert_samples());
// The sound plays in a separate audio thread,
// so we need to keep the main thread alive while it's playing.
std::thread::sleep(std::time::Duration::from_secs(5));
}