I was wondering whether it is a way to access built-in camera playback time indicator. I need to know current playback time, also to receive request when this time changes. Already have subscribed to draw overlay event, but this doesn’t work in may case, because the media is offline (missing from the disk) and this event never fires. My task is to show a camera overlay with meaningfull info when video records are missing.
abstract RecordedImageReceivedHandler VideoOS.Platform.Client.ImageViewerAddOn.RecordedImageReceivedEventFired when a recorded image has been received, the parameter will contain the DateTime of the image being displayed.
I already have tried this, but it doesn’t work in my case because the video records are offline and image just cannot be rendered. Anyway, I found another solution to resolve my problem. I register a handler to MessageId.SmartClient.PlaybackCurrentTimeIndication event, which fires every time user drags the playback timeline.