Skip to main content

PulseSampleClip

Struct PulseSampleClip 

Source
pub struct PulseSampleClip { /* private fields */ }
Expand description

A Lua-friendly sample clip that renders into offline audio exports.

Implementations§

Source§

impl PulseSampleClip

Source

pub fn new(path: impl Into<String>) -> Self

Creates a sample clip from an audio file path.

Source

pub fn with_playback_rate(self, playback_rate: f32) -> PulseResult<Self>

Sets sample playback rate. Values above 1 play faster and higher.

Source

pub fn with_gain(self, gain: f32) -> PulseResult<Self>

Sets sample gain before the clip is inserted into the composition.

Source

pub fn with_pitch_shift(self, semitones: f32) -> PulseResult<Self>

Shifts pitch in semitones without intentionally changing duration.

Source

pub fn with_time_stretch(self, factor: f32) -> PulseResult<Self>

Stretches time without intentionally changing pitch.

Source

pub fn with_start_at(self, start_at: f32) -> PulseResult<Self>

Sets clip start offset relative to the song or phrase placement.

Source

pub fn with_track(self, track_name: impl Into<String>) -> Self

Sets the track name used when this sample clip is inserted into a song or phrase.

Source

pub fn with_volume(self, volume: f32) -> PulseResult<Self>

Sets track-level volume for the sample clip.

Source

pub fn with_pan(self, pan: f32) -> PulseResult<Self>

Sets track-level stereo pan for the sample clip.

Source

pub fn with_effect(self, effect: PulseEffect) -> Self

Appends one track-level effect to this sample clip.

Source

pub fn with_slice(self, start: f32, end: f32) -> PulseResult<Self>

Selects a source audio time range before pitch, stretch, gain, and rate transforms.

Source

pub fn with_reverse(self) -> Self

Reverses the selected source sample range before fades, pitch, stretch, gain, and rate transforms.

Source

pub fn with_loop_for(self, duration: f32) -> PulseResult<Self>

Repeats the selected source sample range to a fixed offline render duration.

Source

pub fn with_normalize(self) -> Self

Normalizes the selected source sample peak before fades and final gain.

Source

pub fn with_fade_in(self, duration: f32) -> PulseResult<Self>

Applies a fade-in to the rendered source sample before pitch, stretch, gain, and rate transforms.

Source

pub fn with_fade_out(self, duration: f32) -> PulseResult<Self>

Applies a fade-out to the rendered source sample before pitch, stretch, gain, and rate transforms.

Source

pub fn path(&self) -> &str

Returns the source audio file path.

Source

pub fn playback_rate(&self) -> f32

Returns the sample playback rate.

Source

pub fn start_at(&self) -> f32

Returns clip start offset relative to the song or phrase placement.

Source

pub fn track_name(&self) -> Option<&str>

Returns the explicit track name, if one was set.

Source

pub fn volume(&self) -> f32

Returns track-level volume.

Source

pub fn pan(&self) -> f32

Returns track-level pan.

Source

pub fn effects(&self) -> &[PulseEffect]

Returns track-level effects in insertion order.

Source

pub fn slice_range(&self) -> Option<(f32, f32)>

Returns selected source slice range, if any.

Source

pub fn reverse(&self) -> bool

Returns whether the selected source sample range is reversed before rendering.

Source

pub fn loop_for(&self) -> Option<f32>

Returns the requested offline loop duration, if any.

Source

pub fn normalize(&self) -> bool

Returns whether the rendered source sample is normalized before final gain.

Source

pub fn fade_in(&self) -> f32

Returns fade-in duration in seconds.

Source

pub fn fade_out(&self) -> f32

Returns fade-out duration in seconds.

Source

pub fn duration(&self) -> PulseResult<f32>

Returns rendered clip duration after sample transforms and playback rate.

Trait Implementations§

Source§

impl Clone for PulseSampleClip

Source§

fn clone(&self) -> PulseSampleClip

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PulseSampleClip

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for PulseSampleClip

Source§

fn eq(&self, other: &PulseSampleClip) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for PulseSampleClip

Source§

impl UserData for PulseSampleClip

Source§

fn add_methods<M: UserDataMethods<Self>>(methods: &mut M)

Adds custom methods and operators specific to this userdata.
Source§

fn add_fields<F>(fields: &mut F)
where F: UserDataFields<Self>,

Adds custom fields specific to this userdata.
Source§

fn register(registry: &mut UserDataRegistry<Self>)

Registers this type for use in Lua. Read more

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

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

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<S> FromSample<S> for S

Source§

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.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> IntoLua for T
where T: UserData + MaybeSend + 'static,

Source§

fn into_lua(self, lua: &Lua) -> Result<Value, Error>

Performs the conversion.
Source§

impl<T> IntoLuaMulti for T
where T: IntoLua,

Source§

fn into_lua_multi(self, lua: &Lua) -> Result<MultiValue, Error>

Performs the conversion.
Source§

unsafe fn push_into_stack_multi(self, lua: &RawLua) -> Result<i32, Error>

Source§

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

Source§

fn into_sample(self) -> T

Source§

impl<T> MaybeSend for T

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

fn to_sample_(self) -> U

Source§

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

Source§

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>,

Source§

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V