BASS.NET API for the Un4seen BASS Audio Library

BassBASS_ChannelGetTagsFLACCuesheet Method

BASS.NET API for the Un4seen BASS Audio Library
Retrieves a FLAC cuesheet tags from a channel, if available.

Namespace:  Un4seen.Bass
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

public static BASS_TAG_FLAC_CUE BASS_ChannelGetTagsFLACCuesheet(
	int handle
)

Parameters

handle
Type: SystemInt32
The channel handle.

Return Value

Type: BASS_TAG_FLAC_CUE
or an instance of the BASS_TAG_FLAC_CUE.
Remarks

Only available when streaming a file containing FLAC tags.

ERROR CODEDescription
BASS_ERROR_HANDLEhandle is not valid.
BASS_ERROR_NOTAVAILThe requested tags are not available.

Examples

Bass.BASS_PlugInLoad("bassflac.dll");
...
int stream = Bass.BASS_StreamCreateFile("test.flac", 0, 0, BASSFlag.BASS_DEFAULT);
BASS_TAG_FLAC_CUE cuesheet = Bass.BASS_ChannelGetTagsFLACCuesheet(stream);
See Also

Reference