SDK component that perform export video and audio, the SmartClientPlayer can reproduce only the video and the audio is mute.

Studing component Samples (Export e VideoFileViewer), i developed a simple component SDK that, from a previous created exported video and audio files , read the BLK format of video e audio and create the new exported files with a new restricted dateStart and dateEnd.

It’s run but when I try to assign to _exporter.audiosouces the _camera.GetRelated() (_camera is selected from ItemPickerForm) the list is Empty.

If I select the Microphone (always from ItemPickerForm) I find it and assign too, but at the end when exported is finished and I use the SmartClientPlayer i can see only the video with the new data start and end but the audio is mute.

I used as in the sample the :

both separately for video and audio :

Uri uri = new Uri(“fil[e:\\](file:e://)” + _selectedStoragePath );

VideoOS.Platform.SDK.Environment.AddServer(uri, System.Net.CredentialCache.DefaultNetworkCredentials);

VideoOS.Platform.SDK.Environment.Login(uri, true);

VideoOS.Platform.SDK.Environment.LoadConfiguration(uri);

Are there errors? Thanks a lot

I think there was some work on audio recently, so first a quick question: Can you verify you have MIP SDK 2018 R1?

Hi Thanks for answering so quickly,

Yes I 've installed MIP SDK 2018 R1

When you read the previously created export with the MIP SDK methods, you will read each “device” independently, and you will loose the information on which device is related with which device ie. which microphone is related to which camera.

Milestone Development has in a wish list a new feature to let the MIP SDK read and understand the .scp file, because this is the file the Smart Client and Smart Client Player uses to understand the relationship.

In theory you might be able to read .scp file section, and when you have performed the export modifiy the newly exported .scp file.

The feature enhancement is only on the wish-list and I cannot say when or even if it will be developed.

Great!! Now is good. I tried to twiddle with .scp file but l had a look to the wrong tags.

This SDK is very clever.

Thanks a lot.