Windows error 0xC00D36B2, -1072875854

Detailed Error Information

MF_E_INVALIDREQUEST[1]

MessageThe request is invalid in the current state.%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 Code14002 (0x36b2)

Questions

2votes
0answers

UWP: The component cannot be found (Exception from HRESULT: 0x88982F50)

I sometimes get an error when i try to take a picture within my uwp app. This error is very hard to reproduce and happend a few min ago on desktop platform. I used a hovercam to retrieve the imagebuffer. public async Task<IBuffer> TakePhotoAsync() { Debug.WriteLine("taking picture..."); using (var stream [...] read more
c#
uwp
1vote
1answer

How to play RTSP live video streaming in UWP app

I want to play live video stream RTSP protocol using MediaElement in Universal Windows Platform (UWP) app platform. I am trying to this way but it now working. <MediaElement x:Name="mediaPlayer" /> Code Behind var streamUri = new Uri("rtsp://X.X.X.X:1027/h264/ch1.2"); var streamResponse = await AdaptiveMediaSource.CreateFromUriAsync(streamUri); if (streamResponse.Status == AdaptiveMediaSourceCreationStatus.Success) { mediaPlayer.SetMediaStreamSource(streamResponse.MediaSource); } [...] read more
uwp
rtsp
windows-10-universal
mediaelement
1vote
2answers

Play audio from file to speaker with Media Foundation

I'm attempting to play the audio track from an mp4 file to my speaker. I know Media Foundation is able to decode the audio stream as I can play it with the TopoEdit tool. In the sample code below I'm not using a media session or topology. I'm attempting to [...] read more
windows
audio
ms-media-foundation
0votes
0answers

Video Processor MFT causes error 'The request is invalid in the current state'

I am using Media Foundation to create a webcam viewer. Critical to this application is that the webcam stream is horizontally mirrored. I am using the Video Processor MFT to achieve this. Here's the relevant code to add the MFT: void tryMirror(IMFPMediaPlayer* pPlayer) { IMFTransform* pMFT = NULL; IMFVideoProcessorControl* pVPC [...] read more
c++
winapi
ms-media-foundation
0votes
1answer

I want to use StartRecordingToFileAsync function in UWP

I want to record screen audio using AppRecordingManager in UWP. I found StartRecordingToFileAsync function in AppRecordingManager Class to write audio and video content in UWP. Here is the official document URL about this function: https://docs.microsoft.com/en-us/uwp/api/windows.media.apprecording.apprecordingmanager.startrecordingtofileasync#Windows_Media_AppRecording_AppRecordingManager_StartRecordingToFileAsync_Windows_Storage_StorageFile_ Although I try to use this function to record audio, I always keep getting this [...] read more
c#
uwp
windows-10
windows-10-universal
0votes
0answers

UWP _mediaCapture.StartPreviewAsync() System.Runtime.InteropServices.COMException (0xC00D36B2)

Like the title says,when i use _mediaCapture.StartPreviewAsync() func ,it throws an exception "System.Runtime.InteropServices.COMException (0xC00D36B2)" read more
uwp
0votes
1answer

IMFCapturePreviewSink with Audio

The IMFCapturePreviewSink doc (https://msdn.microsoft.com/en-us/library/windows/desktop/hh447865(v=vs.85).aspx) says it supports audio and video. I've got video working using MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_VIDEO_PREVIEW However there is no audio equivalent in mfcaptureengine.h. I tried adding the streams directly for (DWORD i = 0; i < streamCount; i++) { CComPtr<IMFMediaType> pMediaType = NULL; if (SUCCEEDED_Xb(hr)) { hr = pSource->GetCurrentDeviceMediaType(i, [...] read more
audio
ms-media-foundation

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