TAG structure of an ID3v1 block to be used with BASS_ChannelGetTags(Int32, BASSTag).
Namespace: Un4seen.Bass
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.17.7
Syntax
The BASS_TAG_ID3 type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| Album |
The album string (max. 30 characters).
| |
| Artist |
The artist string (max. 30 characters).
| |
| Comment |
The comment string (max. 28 characters).
| |
| ID |
The id string (should be 'TAG').
| |
| Title |
The title string (max. 30 characters).
| |
| Year |
The year string (max. 4 characters).
|
Fields
| Name | Description | |
|---|---|---|
| Genre |
The genre id.
| |
| Track |
The track number.
|
Remarks
Examples
IntPtr p = Bass.BASS_ChannelGetTags(stream, BASSTag.BASS_TAG_ID3); if (p != IntPtr.Zero) { BASS_TAG_ID3 id3 = (BASS_TAG_ID3)Marshal.PtrToStructure(p, typeof(BASS_TAG_ID3)); ... }
See Also