Interface VdoPlayer
- 
                    
                    - All Implemented Interfaces:
 
 public interface VdoPlayerInterface for controlling playback. The VdoPlayer instance returned in onInitializationSuccess can be used to load media and control playback. 
- 
                
                    
                    - 
                                
                            
                                Nested Class SummaryNested Classes Modifier and Type Class Description public interfaceVdoPlayer.PlaybackEventListenerInterface for callbacks related to playback events. 
 - 
                                
                            
                                Method SummaryModifier and Type Method Description abstract intgetPlaybackState()Returns the current state of the player. abstract voidsetPlayWhenReady(boolean playWhenReady)Sets whether playback should proceed when getPlaybackState == STATE_READY. abstract booleangetPlayWhenReady()Whether playback will proceed when getPlaybackState == STATE_READY. abstract voidload(VdoInitParams vdoParams)Immediately starts loading a media for the player to play. abstract voidretry()Attempt to prepare the media while maintaining its playback state. abstract longgetCurrentTime()Gets the current playback time of the video from the beginning. abstract longgetBufferedTime()Gets the time till which video is buffered abstract longgetDuration()Gets the duration of the current video. abstract booleanisSpeedControlSupported()Returns if the current player supports changing the playback speed. abstract voidsetPlaybackSpeed(float speed)Sets the playback speed. abstract floatgetPlaybackSpeed()Returns the currently active playback speed. abstract voidrelease()Release system resources used by this VdoPlayer. abstract voidseekTo(long timeInMillis)Seeks to a particular time in the video. abstract voidaddPlaybackEventListener(VdoPlayer.PlaybackEventListener listener)Register callbacks for playback events from this VdoPlayer abstract voidremovePlaybackEventListener(VdoPlayer.PlaybackEventListener listener)Remove a registered playback event listener from this VdoPlayer abstract voidstop()Stops the currently loaded video. abstract Array<Track>getAvailableTracks()Returns the available tracks for the currently playing media. abstract Array<Track>getSelectedTracks()Returns the selected tracks for the currently playing media. abstract voidsetSelectedTracks(Array<Track> tracks)Sets a fixed (non-adaptive) selection of tracks. abstract booleanisAdaptive()Returns if the current playback is adaptive. abstract MediaInfogetCurrentMedia()Returns a MediaInfo object containing info corresponding to the currently playing media. abstract ObjectgetPlaybackProperty(String propertyName)Returns values of additional properties specific to current playback session. abstract voidsearchInSelectedSubtitle(String searchText, SubtitleSearchListener subtitleSearchListener)Search in selected subtitle and seek to matching cues. abstract voidsetAutoResumeCallback(AutoResumeCallback autoResumeCallback)Set callback to provide event when video start resume from saved seek position abstract PlayerOptiongetPlayerOptions()* Called when the player configuration for requested media is loaded. - 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        getPlaybackStateabstract int getPlaybackState() Returns the current state of the player. - Returns:
- One of the STATE_IDLE, STATE_BUFFERING, STATE_READY, STATE_ENDED. 
 
 - 
                                        setPlayWhenReadyabstract void setPlayWhenReady(boolean playWhenReady) Sets whether playback should proceed when getPlaybackState == STATE_READY. If the player is already in the ready state then this method can be used to pause and resume playback. - Parameters:
- playWhenReady- Whether playback should proceed when ready.
 
 - 
                                        getPlayWhenReadyabstract boolean getPlayWhenReady() Whether playback will proceed when getPlaybackState == STATE_READY. - Returns:
- Whether playback will proceed when ready. 
 
 - 
                                        loadabstract void load(VdoInitParams vdoParams) Immediately starts loading a media for the player to play. - Parameters:
- vdoParams- parameters for the playback
 
 - 
                                        retryabstract void retry() Attempt to prepare the media while maintaining its playback state. 
 - 
                                        getCurrentTimeabstract long getCurrentTime() Gets the current playback time of the video from the beginning. - Returns:
- the current playback time of the video in milliseconds 
 
 - 
                                        getBufferedTimeabstract long getBufferedTime() Gets the time till which video is buffered - Returns:
- buffer time in milliseconds 
 
 - 
                                        getDurationabstract long getDuration() Gets the duration of the current video. - Returns:
- duration of the current video in milliseconds 
 
 - 
                                        isSpeedControlSupportedabstract boolean isSpeedControlSupported() Returns if the current player supports changing the playback speed. - Returns:
- true if speed control is supported 
 
 - 
                                        setPlaybackSpeedabstract void setPlaybackSpeed(float speed) Sets the playback speed. Passing 0 or a negative value will reset player to use default playback speed of 1. onPlaybackSpeedChanged will be called when the currently active playback speed changes. - Parameters:
- speed- factor by which playback speed should be changed
 
 - 
                                        getPlaybackSpeedabstract float getPlaybackSpeed() Returns the currently active playback speed. - Returns:
- playback speed 
 
 - 
                                        releaseabstract void release() Release system resources used by this VdoPlayer. A new VdoPlayer instance must be created to play/stream another video. 
 - 
                                        seekToabstract void seekTo(long timeInMillis) Seeks to a particular time in the video. - Parameters:
- timeInMillis- time in milliseconds
 
 - 
                                        addPlaybackEventListenerabstract void addPlaybackEventListener(VdoPlayer.PlaybackEventListener listener) Register callbacks for playback events from this VdoPlayer - Parameters:
- listener- listener for the callback
 
 - 
                                        removePlaybackEventListenerabstract void removePlaybackEventListener(VdoPlayer.PlaybackEventListener listener) Remove a registered playback event listener from this VdoPlayer - Parameters:
- listener- the listener to remove
 
 - 
                                        stopabstract void stop() Stops the currently loaded video. 
 - 
                                        getAvailableTracksabstract Array<Track> getAvailableTracks() Returns the available tracks for the currently playing media. - Returns:
- array containing available tracks, or empty array if no tracks are currently available 
 
 - 
                                        getSelectedTracksabstract Array<Track> getSelectedTracks() Returns the selected tracks for the currently playing media. - Returns:
- array containing selected tracks, or empty array if no tracks are currently selected 
 
 - 
                                        setSelectedTracksabstract void setSelectedTracks(Array<Track> tracks) Sets a fixed (non-adaptive) selection of tracks. The provided array must contain Track objects returned by the player, and also must contain only single Track corresponding to a Track.TYPE_* constant. Only the first track in the array corresponding to a Track.TYPE_* constant will be acknowledged. - Parameters:
- tracks- the tracks to select
 
 - 
                                        isAdaptiveabstract boolean isAdaptive() Returns if the current playback is adaptive. - Returns:
- true if player is adaptive, false otherwise 
 
 - 
                                        getCurrentMediaabstract MediaInfo getCurrentMedia() Returns a MediaInfo object containing info corresponding to the currently playing media. - Returns:
- MediaInfo object corresponding to currently playing media, or null if no media is loaded 
 
 - 
                                        getPlaybackPropertyabstract Object getPlaybackProperty(String propertyName) Returns values of additional properties specific to current playback session. Returned values need to be cast to their expected types before use. Get the value for propertyName TOTAL_PLAYED, TOTAL_COVERED - Parameters:
- propertyName- name of desired property
- Returns:
- requested property value as an object; null if not available 
 
 - 
                                        searchInSelectedSubtitleabstract void searchInSelectedSubtitle(String searchText, SubtitleSearchListener subtitleSearchListener) Search in selected subtitle and seek to matching cues. - Parameters:
- searchText- text to search in subtitle file.
- subtitleSearchListener- SubtitleSearchListener Callback for search result and errors com.vdocipher.aegis.player.internal.subtitle.SubtitleSearchListener.Error.
 
 - 
                                        setAutoResumeCallbackabstract void setAutoResumeCallback(AutoResumeCallback autoResumeCallback) Set callback to provide event when video start resume from saved seek position - Parameters:
- autoResumeCallback- AutoResumeCallback Callback for autoResumeCallbackcom.vdocipher.aegis.player.internal.util.AutoResumeCallback.
 
 - 
                                        getPlayerOptionsabstract PlayerOption getPlayerOptions() * Called when the player configuration for requested media is loaded. 
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-