Hi, how can I show the camera that has the recording so I want to playback with specific from and to period through background plugin. I am using a floating window to show the live camera so in another window I want to show the playback for same camera.

We don’t currently support controlling independent playback from a plugin, so if you want to do this you will have to make your own view item plugin with an ImageViewerWpfControl inside. Then you can create a floating window and populate it with a dynamic view containing only your plugin.

The plugin can then control the playback of its own ImageViewerWpfControl.

Hi,

I am sending the command for showing the live camera view along with Playback Tab in floating window. The Playback showing the current data & time, so how I can get Playback before 10 min by sending the command in same floating windows. see the attachment for your reference.

Sorry, my previous answer was wrong.

You should be able to do this by first getting the playback controller ID for the given window using this method:

ClientControl.Instance.GetPlaybackController(windowInformation)

And then you can send the SmartClient.PlaybackCommand message with the controller ID as the destination of the message.

Hi,

Is any sample so it can help me, where I need to pass the date & time parameters for playback and it must start auto play when I will send the command.

There are no examples doing exactly what you describe, but e.g. the RGB Video Enhancement sample sends this kind of message. You then just have to provide the ID of the provider as the destination as described in my previous comment. After the goto command you can send another message telling it to start playback. Have a look at the PlaybackCommandData documentation for more information on what to provide with the PlaybackCommand message: https://doc.developer.milestonesys.com/html/index.html?base=miphelp/class_video_o_s_1_1_platform_1_1_messaging_1_1_playback_command_data.html&tree=tree_search.html?search=playbackcommanddata

can we show only Playback Tab in Floating Window not Live Tab or when we send the command so it can go on Playback Tab ?

No, there is unfortunately no way of controlling the currently shown workspace in a floating window (nor hide a workspace). This can only be done for the Main window.