(Redirected from AudioClipAssetMetadata (Component))
Component image
Audio Clip Asset Metadata is a component that will populate itself with different small bits of information about an audio clip, also known as metadata. The metadata will be the default values until an audio clip is provided, which will then populate the data.
Fields
Name | Type | Description |
---|---|---|
persistent
|
Bool | Determines whether or not this item will be saved to the server. |
UpdateOrder
|
Int | Controls the order in which this component is updated. |
Enabled
|
Bool | Controls whether or not this component is enabled. |
AudioClip
|
AudioClip | The audio clip to read metadata from |
SampleRate
|
raw output of Int | The Hz the audio is sampled at. |
Channels
|
raw output of ChannelConfiguration | The audio channel configuration the audio was recorded in. |
ChannelCount
|
raw output of Int | How many channels are in the audio recording. usually 1 channel for mono or 2 channels for L and R Stereo. |
SampleCount
|
raw output of Int | how many total samples the audio clip has |
Duration
|
raw output of Double | How long the audio clip is in seconds. |
Extension
|
raw output of String | the extension of the file type the audio was recorded in. |
CodecInfo
|
raw output of String | The codec the audio is written in like WAV or FLAC and the quality of the audio. |
FullyDecoded
|
raw output of Bool | If the audio is loaded or not and decoded (Waveform visible) |