Difference between revisions of "SoundData:copyFrom"

m
m (Note about no sample rate conversion.)
Line 15: Line 15:
 
== Notes ==
 
== Notes ==
 
Samples start from zero. If a SoundData has multiple channels, each sample contains data for all channels.
 
Samples start from zero. If a SoundData has multiple channels, each sample contains data for all channels.
 +
 +
This function does not perform sample rate conversion. If the SoundDatas have different sample rate, the resulting audio may played slower or faster depending on the differences.
 
== See Also ==
 
== See Also ==
 
* [[parent::SoundData]]
 
* [[parent::SoundData]]

Revision as of 03:34, 23 January 2025

Available since LÖVE 12.0
This function is not supported in earlier versions.

Copies the specified section of the given SoundData into this one.

Function

Synopsis

SoundData:copyFrom( sourcedata, sourcestart, samplecount, deststart )

Arguments

SoundData sourcedata
The SoundData to copy from.
number sourcestart
The first sample in the source SoundData to copy from.
number samplecount
The total number of samples to copy.
number sourcestart
The first sample in the destination SoundData to copy to.

Returns

Nothing.

Notes

Samples start from zero. If a SoundData has multiple channels, each sample contains data for all channels.

This function does not perform sample rate conversion. If the SoundDatas have different sample rate, the resulting audio may played slower or faster depending on the differences.

See Also

Other Languages