pub struct StaticSoundHandle { /* private fields */ }
Expand description

Controls a static sound.

Implementations§

source§

impl StaticSoundHandle

source

pub fn state(&self) -> PlaybackState

Returns the current playback state of the sound.

source

pub fn position(&self) -> f64

Returns the current playback position of the sound (in seconds).

source

pub fn set_volume( &mut self, volume: impl Into<Value<Volume>>, tween: Tween ) -> Result<(), CommandError>

Sets the volume of the sound.

§Examples

Set the volume of the sound as a factor immediately:

use kira::tween::Tween;

sound.set_volume(0.5, Tween::default())?;

Smoothly transition the volume to a target value in decibels:

use kira::tween::Tween;
use std::time::Duration;

sound.set_volume(kira::Volume::Decibels(-6.0), Tween {
	duration: Duration::from_secs(3),
	..Default::default()
})?;

Link the volume to a modulator, smoothly transitioning from the current value:

use kira::{
	manager::{AudioManager, AudioManagerSettings, backend::DefaultBackend},
	sound::static_sound::{StaticSoundData, StaticSoundSettings},
	modulator::tweener::TweenerBuilder,
	tween::Tween,
};
use std::time::Duration;

let mut manager = AudioManager::<DefaultBackend>::new(AudioManagerSettings::default())?;
let tweener = manager.add_modulator(TweenerBuilder {
	initial_value: 0.5,
})?;
let mut sound = manager.play(StaticSoundData::from_file("sound.ogg", StaticSoundSettings::default())?)?;
sound.set_volume(&tweener, Tween {
	duration: Duration::from_secs(3),
	..Default::default()
})?;
source

pub fn set_playback_rate( &mut self, playback_rate: impl Into<Value<PlaybackRate>>, tween: Tween ) -> Result<(), CommandError>

Sets the playback rate of the sound.

Changing the playback rate will change both the speed and pitch of the sound.

§Examples

Set the playback rate of the sound as a factor immediately:

use kira::tween::Tween;

sound.set_playback_rate(0.5, Tween::default())?;

Smoothly transition the playback rate to a target value in semitones:

use kira::{
	tween::Tween,
	sound::PlaybackRate,
};
use std::time::Duration;

sound.set_playback_rate(PlaybackRate::Semitones(-2.0), Tween {
	duration: Duration::from_secs(3),
	..Default::default()
})?;

Link the playback rate to a modulator, smoothly transitioning from the current value:

use kira::{
	manager::{AudioManager, AudioManagerSettings, backend::DefaultBackend},
	sound::static_sound::{StaticSoundData, StaticSoundSettings},
	modulator::tweener::TweenerBuilder,
	tween::Tween,
};
use std::time::Duration;

let mut manager = AudioManager::<DefaultBackend>::new(AudioManagerSettings::default())?;
let tweener = manager.add_modulator(TweenerBuilder {
	initial_value: 0.5,
})?;
let mut sound = manager.play(StaticSoundData::from_file("sound.ogg", StaticSoundSettings::default())?)?;
sound.set_playback_rate(&tweener, Tween {
	duration: Duration::from_secs(3),
	..Default::default()
})?;
source

pub fn set_panning( &mut self, panning: impl Into<Value<f64>>, tween: Tween ) -> Result<(), CommandError>

Sets the panning of the sound, where 0.0 is hard left, 0.5 is center, and 1.0 is hard right.

§Examples

Smoothly transition the panning to a target value:

use kira::tween::Tween;
use std::time::Duration;

sound.set_panning(0.25, Tween {
	duration: Duration::from_secs(3),
	..Default::default()
})?;

Link the panning to a modulator, smoothly transitioning from the current value:

use kira::{
	manager::{AudioManager, AudioManagerSettings, backend::DefaultBackend},
	sound::static_sound::{StaticSoundData, StaticSoundSettings},
	modulator::tweener::TweenerBuilder,
	tween::Tween,
};
use std::time::Duration;

let mut manager = AudioManager::<DefaultBackend>::new(AudioManagerSettings::default())?;
let tweener = manager.add_modulator(TweenerBuilder {
	initial_value: 0.25,
})?;
let mut sound = manager.play(StaticSoundData::from_file("sound.ogg", StaticSoundSettings::default())?)?;
sound.set_panning(&tweener, Tween {
	duration: Duration::from_secs(3),
	..Default::default()
})?;
source

pub fn set_playback_region( &mut self, playback_region: impl Into<Region> ) -> Result<(), CommandError>

Sets the portion of the sound that should be played.

§Examples

Set the sound to play from 3 seconds in to the end:

sound.set_playback_region(3.0..)?;

Set the sound to play from 2 to 4 seconds:

sound.set_playback_region(2.0..4.0)?;
source

pub fn set_loop_region( &mut self, loop_region: impl IntoOptionalRegion ) -> Result<(), CommandError>

Sets the portion of the sound that will play in a loop.

§Examples

Set the sound to loop the portion from 3 seconds in to the end:

sound.set_loop_region(3.0..)?;

Set the sound to loop the portion from 2 to 4 seconds:

sound.set_loop_region(2.0..4.0)?;

Set a sound that was previously looping to stop looping:

sound.set_loop_region(None)?;
source

pub fn pause(&mut self, tween: Tween) -> Result<(), CommandError>

Fades out the sound to silence with the given tween and then pauses playback.

source

pub fn resume(&mut self, tween: Tween) -> Result<(), CommandError>

Resumes playback and fades in the sound from silence with the given tween.

source

pub fn stop(&mut self, tween: Tween) -> Result<(), CommandError>

Fades out the sound to silence with the given tween and then stops playback.

Once the sound is stopped, it cannot be restarted.

source

pub fn seek_to(&mut self, position: f64) -> Result<(), CommandError>

Sets the playback position to the specified time in seconds.

source

pub fn seek_by(&mut self, amount: f64) -> Result<(), CommandError>

Moves the playback position by the specified amount of time in seconds.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<S> FromSample<S> for S

§

fn from_sample_(s: S) -> S

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

§

fn into_sample(self) -> T

§

impl<T, U> ToSample<U> for T
where U: FromSample<T>,

§

fn to_sample_(self) -> U

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,