I have developed a UWP application that capture video from web cam and saves to local storage of UWP and the application works perfectly fine on local machine however after deploying it on RaspberryPi3 I am getting the fo
The Specified Object or Value Does not Exist
Files are being saved to localData of Application. After debugging I got to know the error is in following lines:
MediaEncodingProfile recordProfile = null;
recordProfile = MediaEncodingProfile.CreateWmv(VideoEncodingQuality.Auto);
await _mediaCapture.StartRecordToStorageFileAsync(recordProfile, recordStorageFile);
_statuses.Add(DateTime.Now.ToString() + ": " + fileName + " Recording in progress");
any help would be appreciated.