- // open audio file
- let mut reader = hound::WavReader::open("/home/will/Downloads/Adducci - Around the Horn.wav").unwrap();
- let file_rate = reader.spec().sample_rate;
-
- // setup audio output and build output stream
- let host = cpal::default_host();
- let device = host.default_output_device().expect("No output device available");
-
- let stream = device.build_output_stream(
- &StreamConfig{
- channels: 2,
- sample_rate: SampleRate{0: file_rate},
- buffer_size: BufferSize::Fixed(WINDOW_SIZE as u32)
- },
- move |data: &mut [i16], _: &cpal::OutputCallbackInfo| {
- samples.get_data(data);
- },
- move |err| {
- eprintln!("an error occurred on the output audio stream: {}", err);
- },
- None
- ).unwrap();
- stream.play().expect("Stream play failed");
-
- // begin looping though the samples until the buffer is full of complex audio with an imag element of 0
- let mut i = 0;
- for sample in reader.samples::<i16>() {
- if i == SPECTOGRAM_AREA {
-
- // transform and do power scaling
- forward_transform.process_with_scratch(&mut buffer, &mut scratch);
- for x in buffer.iter_mut() {
- *x *= 1f32 / WINDOW_SIZE as f32;
- }
- image_array.from_buffer(&mut buffer);
+ // get the input and output devices ready
+ let config = StreamConfig {
+ channels: 1,
+ sample_rate: SampleRate(48_000),
+ buffer_size: BufferSize::Default
+ };
+ let input = Location::File(String::from("/home/will/Music/Adducci - Around the Horn.wav"));
+ let output = Location::Physical(config);
+ let sound_manager = SoundObject::new(input, output);
+
+ loop {
+ // transform and do power scaling
+ forward_transform.process_with_scratch(&mut buffer, &mut scratch);
+ for x in buffer.iter_mut() {
+ *x *= 1f32 / WINDOW_SIZE as f32;
+ }
+ image_array.from_buffer(&mut buffer);