Converts the members of this instance to a WAV RIFF BEXT chunk.
Namespace: Un4seen.Bass.AddOn.Tags
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.18.2
Syntax
Parameters
- fromNativeTags
- Type: SystemBoolean
to create the BEXT chunk out of the NativeTags, to create them from the standard members.
Return Value
Type: ByteThe byte array containing the BEXT chunk data.
Remarks
When creating the BEXT chunk from the the standard members, the following mapping is used:
| BEXT field | Content |
|---|---|
| Description | title |
| Originator | artist |
| OriginatorReference | encodedby |
| OriginationDate | year |
| OriginationTime | year |
| TimeReference | -- |
| UMID | -- |
| Version | 1 |
| CodingHistory | -- |
Examples
byte[] bextData = TAGs.ConvertToRiffBEXT(true); if (bextData != null) BassEnc.BASS_Encode_AddChunk(_encoderHandle, "bext", bextData, bextData.Length);
See Also