Converts the members of this instance to a WAV RIFF CART chunk.
Namespace: Un4seen.Bass.AddOn.Tags
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.17.7
Syntax
Parameters
- fromNativeTags
- Type: SystemBoolean
to create the CART chunk out of the NativeTags, to create them from the standard members.
Return Value
Type: ByteThe byte array containing the CART chunk data.
Remarks
When creating the CART chunk from the the standard members, the following mapping is used:
| CART field | Content |
|---|---|
| Version | -- |
| Title | title |
| Artist | artist |
| CutID | album |
| ClientID | copyright |
| Category | genre |
| Classification | grouping |
| OutCue | -- |
| StartDate | -- |
| StartTime | -- |
| EndDate | -- |
| EndTime | -- |
| ProducerAppID | encodedby |
| ProducerAppVersion | -- |
| UserDef | -- |
| LevelReference | -- |
| Timer1-8 | -- |
| URL | -- |
| TagText | comment |
Examples
byte[] cartData = TAGs.ConvertToRiffCART(true); if (cartData != null) BassEnc.BASS_Encode_AddChunk(_encoderHandle, "cart", cartData, cartData.Length);
See Also