new RTMPSubscriber()
Extends
Methods
-
getControls() → {PlaybackControls}
-
Returns reference to playback controls if available.
Returns:
PlaybackControls -
getOptions() → {Object}
-
Returns the initialization configuration used in
init().Returns:
Object -
getPlayer() → {Element}
-
Returns the target view Element.
Returns:
Element -
getType() → {String}
-
Returns the type of implementation:
RTMP.Returns:
String -
init(options) → {Promise}
-
Request to initialize the HLS-based Subscriber based on configuration. The returned
Promisewill either resolve with a reference to this instance or reject with an errorStringin failure.Parameters:
Name Type Description optionsObject The initialization configuration map.
Returns:
Promise -
mute()
-
Request to mute the audio of the stream.
- Overrides:
-
off(type, fn)
-
Remove a callback handler for an event type.
Parameters:
Name Type Description typeString fnfunction - Overrides:
-
on(type, fn)
-
Assign a callback handler to an event type.
Parameters:
Name Type Description typeString fnfunction - Overrides:
-
pause()
-
Request to pause playback of stream.
- Overrides:
-
play()
-
Request to start playing the stream.
- Overrides:
-
resume()
-
Request to resume playback od stream.
- Overrides:
-
seekTo(value, duration)
-
Request to set playback point in time.
Parameters:
Name Type Description valueNumber Either the percentage of the duration (if provided) or the time in seconds.
durationNumber Optional duration of video (when known through VOD) to use to determine time based on first param passed as percentage.
- Overrides:
-
setVolume(value)
-
Request to set volume of audio of stream.
Parameters:
Name Type Description valueNumber From 0..1.
- Overrides:
-
stop()
-
Request to stop playback of stream.
- Overrides:
-
subscribe() → {Promise}
-
Request to begin subscribing to a stream.
Returns:
Promise -The returned
Promisewill resolve or reject on successful start of playback. -
toggleFullScreen()
-
Request to toggle fullscreen state.
-
trigger(event)
-
Dispatch an event to be handled by any assigned callbacks.
Parameters:
Name Type Description eventEvent - Overrides:
-
unmute()
-
Request to unmute the audio of the stream.
- Overrides:
-
unsubscribe() → {Promise}
-
Request to stop a subscription. The returned
Promisewill either resolve or reject on successful stop of subscription.Returns:
Promise