Windows error 0xC00D11B1, -1072885327

Detailed Error Information

NS_E_WMP_FILE_OPEN_FAILED[1]

MessageWindows Media Player encountered a problem while playing the file.%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 Code4529 (0x11b1)

Questions

3votes
1answer

Play file from network drive with # in path using MediaElement

Repro code: <Window x:Class="MediaBox.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:MediaBox" Title="MainWindow"> <Grid> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <MediaElement LoadedBehavior="Play" MediaFailed="OnMediaFailed" Source="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:MainWindow}}, Path=FileName}" /> <Button Grid.Row="1" Click="OnOpenClick" Content="Open" /> </Grid> </Window> public partial class MainWindow : Window { public static readonly DependencyProperty FileNameProperty = DependencyProperty.Register( nameof(FileName), typeof(string), typeof(MainWindow), [...] read more
c#
wpf
uri
mediaelement
1vote
2answers

How to play MPEG-TS (transport stream) from WPF and Silverlight

I've tried MediaElement with a .ts file - its not interested (HRESULT: 0xC00D11B1). The TS file plays with WMP no problems (Cannot seem to play it in graphedt though?) I thought MediaElement was supposed to support what WMP supported? Update: This is on Windows 7 by the way (apparently it [...] read more
wpf
silverlight
video-streaming
mediaelement
mpeg
1vote
1answer

MediaElement for normal user windows server 2008

I have very strange issue with MediaElement on Windows Server 2008 logged as not administrator. Every time I'm trying to play video I have error HRESULT: 0xC00D11B1 Here are details: 1. This video is working when I'm logged as Administrator 2. This video is working on WMP on both Admin [...] read more
c#
wpf
1vote
0answers

Windows media player cannot play rtsp and mms stream urls in Session 0 of Win7 and Win Server 2008

In Windows Server 2003, we developed a program. The architecture is: (1)There is a Service (called ServA), (2)There is a process (called ProcB), it is an override Windows Media Player by implementing some necessary WMP interfaces. (3)ServA will start up ProcB through CreateProcess to play stream urls. ServA and ProcB [...] read more
windows-services
windows-server-2008
rtsp
wmp
session-0-isolation

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