Playback Controls
Observing Current Playback Time
Note: The camera should have already started streaming LiveView before making any interactions
Current playback time is updated on onDataChannelMessage callback with action type tsTimeStamp
Seeking to a specific time
Note: The camera should have already started streaming LiveView before making any interactions
To seek to a specific time, The following can be used:
liveViewModel.seek(time: TimeInterval)
Resume playback
Note: The camera should have already started streaming LiveView before making any interactions
To resume playback, The following can be used:
liveViewModel.play()
Pause playback
Note: The camera should have already started streaming LiveView before making any interactions
To Pause playback, The following can be used:
liveViewModel.pause()