Abstract Adds one IMediaPlayerEvent listener. After calling this method, you can listen for the corresponding events in the IMediaPlayer object and obtain data through IMediaPlayerEvent. Depending on your project needs, you can add multiple listeners for the same event.
The name of the target event to listen for. See IMediaPlayerEvent.
The callback function for eventType. Take adding a listener for onPlayerSourceStateChanged as an example: // Create an onPlayerSourceStateChanged object const onPlayerSourceStateChanged = (connection: RtcConnection, elapsed: number) => {}; // Add one onPlayerSourceStateChanged listener engine.addListener('onPlayerSourceStateChanged', onPlayerSourceStateChanged);
Abstract adjustAbstract adjustAdjusts the volume of the media file for publishing. After connected to the Agora server, you can call this method to adjust the volume of the media file heard by the remote user.
0: Success.< 0: Failure.
The volume, which ranges from 0 to 400:0: Mute.100: (Default) The original volume.400: Four times the original volume (amplifying the audio signals by four times).
Abstract getAbstract getAbstract getAbstract getAbstract getAbstract getAbstract getAbstract getGets current playback state.
The current playback state. See MediaPlayerState .
Abstract getAbstract getGets the detailed information of the media stream. Call this method after calling getStreamCount .
If the call succeeds, returns the detailed information of the media stream. See PlayerStreamInfo .If the call fails, returns NULL.
The index of the media stream.
Abstract muteAbstract openOpens the media resource. If you need to play a media file, make sure you receive the onPlayerSourceStateChanged callback reporting PlayerStateOpenCompleted before calling the play method to play the file.
0: Success.< 0: Failure.
The path of the media file. Both local path and online path are supported.
The starting position (ms) for playback. Default value is 0.
Abstract openOpens a media file and configures the playback scenarios. This method supports opening media files of different sources, including a custom media source, and allows you to configure the playback scenarios.
0: Success.< 0: Failure.
Media resources. See MediaSource .
Abstract pauseAbstract playAbstract playPlays preloaded media resources. After calling the preloadSrc method to preload the media resource into the playlist, you can call this method to play the preloaded media resource. After calling this method, if you receive the onPlayerSourceStateChanged callback which reports the PlayerStatePlaying state, the playback is successful.If you want to change the preloaded media resource to be played, you can call this method again and specify the URL of the new media resource that you want to preload. If you want to replay the media resource, you need to call preloadSrc to preload the media resource to the playlist again before playing. If you want to clear the playlist, call the stop method.If you call this method when playback is paused, this method does not take effect until playback is resumed.
0: Success.< 0: Failure.
The URL of the media resource in the playlist must be consistent with the src set by the preloadSrc method; otherwise, the media resource cannot be played.
Abstract preloadPreloads a media resource. You can call this method to preload a media resource into the playlist. If you need to preload multiple media resources, you can call this method multiple times.After calling this method, if you receive the PlayerPreloadEventComplete event in the onPreloadEvent callback, the preload is successful; If you receive the PlayerPreloadEventError event in the onPreloadEvent callback, the preload fails.If the preload is successful and you want to play the media resource, call playPreloadedSrc ; if you want to clear the playlist, call stop .Agora does not support preloading duplicate media resources to the playlist. However, you can preload the media resources that are being played to the playlist again.
0: Success.< 0: Failure.
The URL of the media resource.
The starting position (ms) for playing after the media resource is preloaded to the playlist. When preloading a live stream, set this parameter to 0.
Abstract registerRegisters an audio frame observer object.
0: Success.< 0: Failure.
The audio frame observer, reporting the reception of each audio frame. See IAudioPcmFrameSink .
Optional mode: RawAudioFrameOpModeTypeThe use mode of the audio frame. See RawAudioFrameOpModeType .
Abstract registerRegisters a media player observer.
0: Success.< 0: Failure.
The player observer, listening for events during the playback. See IMediaPlayerSourceObserver .
Abstract registerRegisters a video frame observer object. You need to implement the IMediaPlayerVideoFrameObserver class in this method and register callbacks according to your scenarios. After you successfully register the video frame observer, the SDK triggers the registered callbacks each time a video frame is received.
0: Success.< 0: Failure.
The video observer, reporting the reception of each video frame. See IMediaPlayerVideoFrameObserver .
Removes all listeners for the specified event.
Optional eventType: EventTypeThe name of the target event to listen for. See IMediaPlayerEvent.
Removes the specified IMediaPlayerEvent listener. For listened events, if you no longer need to receive the callback message, you can call this method to remove the corresponding listener.
The name of the target event to listen for. See IMediaPlayerEvent.
Optional listener: IMediaPlayerEvent[EventType]The callback function for eventType. Must pass in the same function object in addListener . Take removing the listener for onPlayerSourceStateChanged as an example: // Create an onPlayerSourceStateChanged object const onPlayerSourceStateChanged = (state: MediaPlayerState, ec: MediaPlayerError) => {}; // Add one onPlayerSourceStateChanged listener engine.addListener('onPlayerSourceStateChanged', onPlayerSourceStateChanged); // Remove the onPlayerSourceStateChanged listener engine.removeListener('onPlayerSourceStateChanged', onPlayerSourceStateChanged);
Abstract resumeAbstract seekSeeks to a new playback position. fter successfully calling this method, you will receive the onPlayerEvent callback, reporting the result of the seek operation to the new playback position.To play the media file from a specific position, do the following:Call this method to seek to the position you want to begin playback.Call the play method to play the media file.
0: Success.< 0: Failure.
The new playback position (ms).
Abstract selectSelects the audio track used during playback. After getting the track index of the audio file, you can call this method to specify any track to play. For example, if different tracks of a multi-track file store songs in different languages, you can call this method to set the playback language.You need to call this method after calling getStreamInfo to get the audio stream index value.
0: Success.< 0: Failure.
The index of the audio track.
Abstract setSets the channel mode of the current audio file. In a stereo music file, the left and right channels can store different audio data. According to your needs, you can set the channel mode to original mode, left channel mode, right channel mode, or mixed channel mode. For example, in the KTV scenario, the left channel of the music file stores the musical accompaniment, and the right channel stores the singing voice. If you only need to listen to the accompaniment, call this method to set the channel mode of the music file to left channel mode; if you need to listen to the accompaniment and the singing voice at the same time, call this method to set the channel mode to mixed channel mode.Call this method after calling open .This method only applies to stereo audio files.
0: Success.< 0: Failure.
The channel mode. See AudioDualMonoMode .
Abstract setSets the pitch of the current media resource. Call this method after calling open .
0: Success.< 0: Failure.
Sets the pitch of the local music file by the chromatic scale. The default value is 0, which means keeping the original pitch. The value ranges from -12 to 12, and the pitch value between consecutive values is a chromatic value. The greater the absolute value of this parameter, the higher or lower the pitch of the local music file.
Abstract setSets the loop playback. If you want to loop, call this method and set the number of the loops.When the loop finishes, the SDK triggers onPlayerSourceStateChanged and reports the playback state as PlayerStatePlaybackAllLoopsCompleted.
0: Success.< 0: Failure.
The number of times the audio effect loops:
Abstract setSets the channel mode of the current audio file. Call this method after calling open .
0: Success.< 0: Failure.
The playback speed. Agora recommends that you limit this value to between 50 and 400, defined as follows:50: Half the original speed.100: The original speed.400: 4 times the original speed.
Abstract setSets the private options for the media player. The media player supports setting private options by key and value. Under normal circumstances, you do not need to know the private option settings, and just use the default option settings.Ensure that you call this method before open .If you need to push streams with SEI into the CDN, call setPlayerOptionInString("sei_data_with_uuid", 1); otherwise, the loss of SEI might occurs.
0: Success.< 0: Failure.
The key of the option.
The value of the key.
Abstract setSets the render mode of the media player.
0: Success.< 0: Failure.
Sets the render mode of the view. See RenderModeType .
Abstract setEnables or disables the spatial audio effect for the media player. After successfully setting the spatial audio effect parameters of the media player, the SDK enables the spatial audio effect for the media player, and the local user can hear the media resources with a sense of space.If you need to disable the spatial audio effect for the media player, set the params parameter to null.
0: Success.< 0: Failure.
Abstract setAbstract stopAbstract switchSwitches the media resource being played. You can call this method to switch the media resource to be played according to the current network status. For example:When the network is poor, the media resource to be played is switched to a media resource address with a lower bitrate.When the network is good, the media resource to be played is switched to a media resource address with a higher bitrate.After calling this method, if you receive the PlayerEventSwitchComplete event in the onPlayerEvent callback, the switch is successful; If you receive the PlayerEventSwitchError event in the onPlayerEvent callback, the switch fails.Ensure that you call this method after open .To ensure normal playback, pay attention to the following when calling this method:Do not call this method when playback is paused.Do not call the seek method during switching.Before switching the media resource, make sure that the playback position does not exceed the total duration of the media resource to be switched.
< 0: Failure.
The URL of the media resource.
Optional syncPts: booleanWhether to synchronize the playback position (ms) before and after the switch:true: Synchronize the playback position before and after the switch.false: (Default) Do not synchronize the playback position before and after the switch.Make sure to set this parameter as false if you need to play live streams, or the switch fails. If you need to play on-demand streams, you can set the value of this parameter according to your scenarios.
Abstract unloadAbstract unregisterUnregisters an audio frame observer.
0: Success.< 0: Failure.
The audio observer. See IAudioPcmFrameSink .
Abstract unregisterReleases a media player observer.
0: Success.< 0: Failure.
The player observer, listening for events during the playback. See IMediaPlayerSourceObserver .
Abstract unregisterUnregisters the video frame observer.
0: Success.< 0: Failure.
The video observer, reporting the reception of each video frame. See IMediaPlayerVideoFrameObserver .
Generated using TypeDoc
This class provides media player functions and supports multiple instances.