Windows error 0xC00DABE8, -1072845848

Detailed Error Information

MF_E_CAPTURE_SOURCE_NO_AUDIO_STREAM_PRESENT[1]

MessageThe current capture source does not have an audio stream.%0
Declared inMferror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)true
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode13 (0x00d)
NameFACILITY_MEDIASERVER[2][3]
DescriptionThe source of the error code is the Windows Media Server.[2][3]
Error Code44008 (0xabe8)

Questions

0votes
1answer

Exception from HRESULT: 0xC00DABE8 when initializing MediaCapture

I'm trying to capture stream from external usb camera (C#, Windows 8). The following code: DeviceInformationCollection devInfoCollection = await DeviceInformation.FindAllAsync(DeviceClass.VideoCapture); MediaCaptureInitializationSettings settings = new Windows.Media.Capture.MediaCaptureInitializationSettings(); settings.VideoDeviceId = devInfoCollection[0].Id; mediaCaptureMgr = new MediaCapture(); await mediaCaptureMgr.InitializeAsync(settings); In last line (await mediaCaptureMgr.InitializeAsync(settings)) is triggered exception. The variable settings is not null. settings: > [...] read more
c#
windows-runtime
media

Comments

Leave a comment

(plain text only)

Sources

  1. Mferror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0