PCM 数据处理
在声音播放时获取 PCM 数据
你可以使用 OnGeneratePCMData 委托在声音播放时获取 PCM 数据。这在处理或分析 PCM 音频数据时很有用。
- Blueprint
- C++
// Assuming ImportedSoundWave is a UE reference to a UImportedSoundWave object (or its derived type, such as UStreamingSoundWave, UCapturableSoundWave, etc.)
ImportedSoundWave->OnGeneratePCMDataNative.AddWeakLambda(this, [this](const TArray<float>& PCMData)
{
// Handle the result
});
获取新填充的 PCM 数据
OnPopulateAudioData 委托可用于获取新填充的 PCM 数据,这对于流式声音波形特别有用,并且可以简化音频分析过程。
- Blueprint
- C++
// Assuming ImportedSoundWave is a UE reference to a UImportedSoundWave object (or its derived type, such as UStreamingSoundWave, UCapturableSoundWave, etc.)
ImportedSoundWave->OnPopulateAudioDataNative.AddWeakLambda(this, [this](const TArray<float>& PopulatedAudioData)
{
// Handle the result
});
将 PCM 数据转换为字节
从这些委托获取的 PCM 数据是 32 位浮点 PCM 格式。 如果需要将 PCM 数据转换为字节,请参阅 转码音频。