Windows error 0xC00D001A, -1072889830

Detailed Error Information

NS_E_FILE_NOT_FOUND[1]

MessageThe system cannot find the file specified.%0
Declared innserror.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 Code26 (0x001a)

Questions

1vote
1answer

an error while trying to play an audio in Audio Playback Agent. System.SystemException: HRESULT = 0xC00D001A

I want to play an audio in background. So I did this iniside my main project BackgroundAudioPlayer.Instance.Track = audioTrack; BackgroundAudioPlayer.Instance.Play(); and inside audio background agent: protected override void OnUserAction(BackgroundAudioPlayer player, AudioTrack track, UserAction action, object param) { switch (action) { case UserAction.Play: player.Play(); break; case UserAction.Stop: player.Stop(); break; case UserAction.Pause: [...] read more
c#
audio
windows-phone-8
windows-phone
0votes
1answer

Stream audio using MediaFoundationReader with Naudio

I am using the MediaFoundationReader to play almost every format with my program, but I also read you are able to play streams using this. How would you go about reading streams from the internet using MediaFoundationReader? When I initialize the MediaFoundationReader-object with an URL I get the following exception: [...] read more
c#
naudio

Comments

Leave a comment

(plain text only)

Sources

  1. nserror.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