25 releases (5 stable)

1.0.5 Aug 7, 2023
1.0.3 Jul 30, 2023
1.0.2 Feb 17, 2022
1.0.0 Oct 17, 2021
0.2.2 Nov 22, 2020

#29 in Audio

Download history 106/week @ 2023-12-15 98/week @ 2023-12-22 46/week @ 2023-12-29 101/week @ 2024-01-05 155/week @ 2024-01-12 90/week @ 2024-01-19 123/week @ 2024-01-26 164/week @ 2024-02-02 163/week @ 2024-02-09 179/week @ 2024-02-16 196/week @ 2024-02-23 148/week @ 2024-03-01 213/week @ 2024-03-08 293/week @ 2024-03-15 317/week @ 2024-03-22 302/week @ 2024-03-29

1,141 downloads per month
Used in 10 crates

MIT license

7.5MB
75K SLoC

C++ 45K SLoC // 0.1% comments C 22K SLoC // 0.0% comments Rust 5K SLoC // 0.0% comments Python 2K SLoC // 0.5% comments Lua 870 SLoC // 0.0% comments Ruby 101 SLoC // 0.1% comments C# 19 SLoC // 0.2% comments Batch 11 SLoC

soloud-rs

Documentation Crates.io License Build

A crossplatform Rust bindings for the soloud audio engine library.

Supported formats: wav, mp3, ogg, flac. The library also comes with a speech synthesizer.

Usage

[dependencies]
soloud = "1"

Or to use the git repo:

[dependencies]
soloud = { git = "https://github.com/moalyousef/soloud-rs" }

To play audio:

use soloud::*;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let mut sl = Soloud::default()?;

    let mut wav = audio::Wav::default();

    wav.load(&std::path::Path::new("sample.wav"))?;

    sl.play(&wav); // calls to play are non-blocking, so we put the thread to sleep
    while sl.voice_count() > 0 {
        std::thread::sleep(std::time::Duration::from_millis(100));
    }

    wav.load(&std::path::Path::new("Recording.mp3"))?;
    
    sl.play(&wav);
    while sl.voice_count() > 0 {
        std::thread::sleep(std::time::Duration::from_millis(100));
    }

    Ok(())
}

To play speech:

use soloud::*;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let mut sl = Soloud::default()?;

    let mut speech = audio::Speech::default();

    speech.set_text("Hello World")?;

    sl.play(&speech);
    while sl.active_voice_count() > 0 {
        std::thread::sleep(std::time::Duration::from_millis(100));
    }

    speech.set_text("1 2 3")?;

    sl.play(&speech);
    while sl.active_voice_count() > 0 {
        std::thread::sleep(std::time::Duration::from_millis(100));
    }

    speech.set_text("Can you hear me?")?;

    sl.play(&speech);
    while sl.active_voice_count() > 0 {
        std::thread::sleep(std::time::Duration::from_millis(100));
    }
    
    Ok(())
}

To add a filter:

use soloud::*;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let mut sl = Soloud::default()?;

    let mut wav = audio::Wav::default();
    let mut filt = filter::EchoFilter::default();
    filt.set_params(0.2)?; // sets the delay

    wav.load(&std::path::Path::new("sample.wav"))?;
    wav.set_filter(0, Some(&filt));

    sl.play(&wav);
    while sl.voice_count() > 0 {
        std::thread::sleep(std::time::Duration::from_millis(100));
    }

    Ok(())
}

The examples can be found in the soloud/examples directory. They can be run using:

cargo run --example simple
cargo run --example speech
cargo run --example filter
cargo run --example load_mem

You will need to have valid "sample.wav" and "Recording.mp3" audio files in the project root. Or you can change the paths to point to any supported audio file.

There is also a demo gui application (using fltk) here.

Dependencies

A Rust compiler, C++ compiler, Cargo, CMake and git (all these need to be in your PATH). Ninja is recommended, but not required, and will be used if found. This crate uses the miniaudio backend by default which assumes default sound drivers are functional.

Backends

The default backend is miniaudio, however Soloud supports several backends to varying degrees. To enable support of a certain backend, alsa for example:

[dependencies]
soloud = { version = "1", default-features = false, features = ["alsa"] }

This also assumes that those libraries headers are in your include path where CMake can find them, otherwise you can set it via the command line (posix):

export CXXFLAGS="-I /path/to/include"

or for Windows:

set CXXFLAGS="-I C:\\path\\to\\include"

The same can be done for CFLAGS if needed.

Supported backends:

  • miniaudio
  • oss
  • alsa
  • sdl2
  • sdl2-static
  • portaudio
  • openal
  • xaudio2
  • winmm
  • wasapi
  • opensles
  • coreaudio
  • jack

Android support

The ANDROID_SDK_ROOT and ANDROID_NDK_ROOT need to be set.

Dependencies