Methods
handleChangeChannel()
handleChangeChannel(matchChannelIdentifierStr): Promise<IChangeChannelResponse>
Changes the current stream to a particular channel by a given channel identifier.
Parameters
matchChannelIdentifierStr
string
A user-input string to match in order to identify the target channel.
For now, this is a string that needs to case-insensitive exactly match the channel identifier.
In the future, this string can also contain values like AffiliateCallSign, CallSign, Name, Number, etc.
Returns
Promise<IChangeChannelResponse>
Details
Used to tune to a channel using the identifier that was provided in ChannelDescriptor.handleChangeChannelByNumber()
handleChangeChannelByNumber(majorNumber, minorNumber): Promise<IChangeChannelResponse>
Changes the current stream to a particular channel by a given channel major and minor number.
Parameters
majorNumber
number
The channel major number value (ATSC format) to which the channel should change.
minorNumber
number
The channel minor number value (ATSC format) to which the channel should change.
Returns
Promise<IChangeChannelResponse>

