Class MusicChannel
Represents an actual music channel that can be streamed or used for generation.
Inheritance
object
MusicChannel
Namespace: Glitch9.AIDevKit.Mubert
Assembly: .dll
Syntax
public class MusicChannel
Properties
ChannelId
The ID of the channel.
Declaration
public int ChannelId { get; set; }
Property Value
Type | Description |
---|---|
int |
Emoji
An emoji representing the channel (if available).
Declaration
public string Emoji { get; set; }
Property Value
Type | Description |
---|---|
string |
Icon
A custom icon URL or identifier (if available).
Declaration
public string Icon { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
The name of the channel (e.g. Acoustic).
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Playlist
The unique playlist index of the channel (e.g. "0.0.1").
Declaration
public string Playlist { get; set; }
Property Value
Type | Description |
---|---|
string |
Stream
Streaming info including the actual URL to stream this channel.
Declaration
public StreamInfo Stream { get; set; }
Property Value
Type | Description |
---|---|
StreamInfo |