I need a playback control similar to Add Bookmark playback control for my plugin

Hi @Bo Ellegård Andersen (Milestone Systems)​,​

I am developing my plugin that create a bookmark identical to Milestone Bookmark popup up.

For that I need a playback control similar to Add Bookmark playback control for my plugin which allows user to select the timeline and Start time and End time adjust accordingly.

Can you guide me how to achieve this using SDK?

The control in the picture you have is not in the MIP SDK. Another similar control is.

It is the PlaybackWpfUserControl.

https://doc.developer.milestonesys.com/mipsdk/index.html?base=MIPhelp%2Fclass_video_o_s_1_1_platform_1_1_client_1_1_playback_wpf_user_control.html&tree=tree_Search.html

https://doc.developer.milestonesys.com/mipsdk/index.html?base=samples%2FPluginSamples%2FSCIndependentPlayback%2FREADME.html&tree=tree_1.html

I experimented with the sample also mentioned above and if I modify the sample setting the two properties..

_playbackWpfUserControl.ShowTimeSpanControl = true;
_playbackWpfUserControl.ShowTallUserControl = true;
_playbackWpfUserControl.Init(_playbackFQID);

(SCIndependentPlaybackViewItemWpfUserControl, Init() method, SCIndependentPlaybackViewItemWpfUserControl.xaml.cs, line 80)

Then the control includes a time span selection.

If the control does not fit your need you will have to create your own control. I hope you will find that the control fits your need.