SoundData

Contains raw audio samples. You can not play SoundData back directly. You must wrap a Source object around it.

Constructors

love.sound.newSoundData Creates a new SoundData.

Functions

Data:getPointer Gets a pointer to the Data.
Data:getSize Gets the Data's size in bytes.
Data:getString Gets the full Data as a string. 0.9.0
Object:type Gets the type of the object as a string.
Object:typeOf Checks whether an object is of a certain type.
SoundData:getBitDepth Returns the number of bits per sample. 0.9.0
SoundData:getBits Returns the number of bits per sample. 0.9.0
SoundData:getChannels Returns the number of channels in the stream.
SoundData:getDuration Gets the duration of the sound data. 0.9.0
SoundData:getSample Gets the sample at the specified position.
SoundData:getSampleCount Returns the sample count of the SoundData. 0.9.0
SoundData:getSampleRate Returns the sample rate of the SoundData.
SoundData:setSample Sets the sample at the specified position.

Supertypes

See Also


SoundData:getBitDepth

SoundData:getBitDepth Available since LÖVE 0.9.0 It has been renamed from

2017-03-21 15:53:09
SoundData:getSampleCount

SoundData:getSampleCount Available since LÖVE 0.9.0 This function is not supported in earlier versions. Returns the number of samples per channel

2017-03-21 15:53:11
SoundData:getBits

SoundData:getBits Removed in LÖVE 0.9.0 It has been renamed to

2017-03-21 15:53:09
SoundData:getSampleRate

SoundData:getSampleRate Returns the sample rate of the SoundData. Function Synopsis

2017-03-21 15:53:11
SoundData:getDuration

SoundData:getDuration Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the duration of the sound data.

2017-03-21 15:53:10
SoundData:setSample

SoundData:setSample Sets the sample at the specified position. Function Synopsis

2017-03-21 15:53:11
SoundData:getSample

SoundData:getSample Gets the sample at the specified position. Valid indices start at 0 and go up to buffer length minus one. Non-integer indices are floored, which means the function

2017-03-21 15:53:10
SoundData:getChannels

SoundData:getChannels Returns the number of channels in the stream. Function Synopsis

2017-03-21 15:53:09