Windows error 0xC00D36C4, -1072875836

Detailed Error Information

MF_E_UNSUPPORTED_BYTESTREAM_TYPE[1]

MessageThe byte stream type of the given URL is unsupported.%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 Code14020 (0x36c4)

Questions

9votes
5answers

C++ FFmpeg create mp4 file

I'm trying to create mp4 video file with FFmpeg and C++, but in result I receive broken file (windows player shows "Can't play ... 0xc00d36c4"). If I create .h264 file, it can be played with 'ffplay' and successfully converted to mp4 via CL. My code: int main() { char *filename [...] read more
c++
video
ffmpeg
libavcodec
libavformat
2votes
0answers

Error "MF_MEDIA_ENGINE_ERR_SRC_NOT_SUPPORTED" "0xC00D36C4" when trying to smooth streaming under windows phone 8

I'm creating a windows phone 8 application with visual studio and when I try to reproduce a smooth streaming video with PlayerReady Client SDK, it just says "MF_MEDIA_ENGINE_ERR_SRC_NOT_SUPPORTED" "0xC00D36C4" If in the URL I provide a static existing .mp4 file somewhere in the internet, it just plays it ok, but [...] read more
windows-phone-8
smooth-streaming-player
2votes
1answer

How to convert amr files to mp3 using C#

I am using NAudio MFT to convert different audio formats to MP3. Now i want to convert amr file to MP3 using Naudio MFT. But, when i given amr file as input to MFT, it has thrown following exception "Exception from HRESULT: 0xC00D36C4". Is there any way to achieve this? [...] read more
c#-4.0
audio
naudio
ms-media-foundation
amr
2votes
1answer

Windows 8 app - MediaElement not playing ".wmv" files

I have an issue with MediaElement in my Win8 app - when I try to play some ".wmv" files from local library it very often (not always) throws MediaFailed and I get the error > MF_MEDIA_ENGINE_ERR_SRC_NOT_SUPPORTED : HRESULT - 0xC00D36C4 which means > Either the video codec or the audio [...] read more
c#
windows-8
windows-runtime
2votes
1answer

What causes a System.Runtime.InteropServices.COMException at BackgroundAudioPlayer.get_Position()?

Sometimes I'm getting an exception when trying to get the position of the BackgroundAudioPlayer.Instance. It's happening very rarely, but I've been able to get a StackTrace. The strange thing is, this code is executed every second while playing a track. What could be the cause of this error? I'm getting [...] read more
c#
windows-phone-8
background-audio
1vote
0answers

I am working on a youtube audio player just like Rythm/Groovy from discord.I have few other features like downloading the audio file.[not working]]

I am using flask and javascript for this. I am able to download the audio file as requested by the user using an ajax call to the server and can convert it to mp3 from webm but on sending it back to the web app from my computer the audio [...] read more
javascript
python
ytdl
1vote
1answer

C# Media Element - No Video

I have created a media player designed for the Windows Store and for music and audio files it's working perfect, but it doesn't play video files. This is the code for the Media Element in the XAML page : <ContentControl x:Name="MediaContainer" HorizontalContentAlignment="Right" VerticalContentAlignment="Center" Height="405" Width="720" HorizontalAlignment="Right" KeyUp="MediaContainer_KeyUp" Grid.Column="0" > <MediaElement [...] read more
c#
wpf
video
wpf-controls
media-player
1vote
1answer

Java video automatic recoding does not working as expected

I'm using java monte screen recorder jar file in order to record my screen while executing java code, this is my code: import static org.monte.media.FormatKeys.EncodingKey; import static org.monte.media.FormatKeys.FrameRateKey; import static org.monte.media.FormatKeys.KeyFrameIntervalKey; import static org.monte.media.FormatKeys.MIME_AVI; import static org.monte.media.FormatKeys.MediaTypeKey; import static org.monte.media.FormatKeys.MimeTypeKey; import static org.monte.media.VideoFormatKeys.CompressorNameKey; import static org.monte.media.VideoFormatKeys.DepthKey; import static org.monte.media.VideoFormatKeys.ENCODING_AVI_TECHSMITH_SCREEN_CAPTURE; import [...] read more
java
screen-recording
1vote
0answers

Error 0xc00d36c4 in Windows 10 Media player when playing video

I've recorded a video with my logitech webcam C920 and a hooked up MXL Microphone MXL Conferencing AC-404 on my laptop. I used the app Camera by default in Windows 10 to record it. After it was done, everything seems fine and when I play the video it gives me [...] read more
error-handling
camera
windows-10
video-capture
1vote
0answers

Breaking change in Visual Studio 2013 Update 4? Media player with smooth streaming

I used to have a my mediaplayer that used to work with my smooth streaming urls, however since i have updated my visual studio 2013 to Update 4 i get the following error => MF_MEDIA_ENGINE_ERR_SRC_NOT_SUPPORTED : HRESULT - 0xC00D36C4 Does anyone have this problem? I have tried to remove the [...] read more
c#
visual-studio-2013
winrt-xaml
media-player
smooth-streaming-player
1vote
1answer

Unable to play video using mediaelement in XAML in Windows store app

I am trying to play a video file in the media element in XAML for a windows store app. But whenever I tried to play it by setting an url pointing to a video file in the source property, I am getting the following error in the MediaFailed event. MF_MEDIA_ENGINE_ERR_SRC_NOT_SUPPORTED [...] read more
c#
xaml
windows-8
windows-store-apps
0votes
1answer

Suddenly unable to play mp4 videos on Windows 10

My windows 10 laptop suddenly stopped properly playing mp4 video files. The error message states that Unable to play the file. It's possible that this item's file format is not supported, the file extension incorrect, or the file data may be broken. 0xc00d36c4 My laptop is equipped with Windows Media [...] read more
windows-10
windows-media-player
mp4
windows-movie-maker
0votes
0answers

Youtube-dl m3u8 download leaves an mp4 unplayable

I'm currently using youtube-dl via python to download an m3u8 stream. Everything works fine but each time I stop the download (ctrl + c) the mp4 becomes unplayable and I get the error code 0xc00d36c4. Thanks for trying to help out! I tried running it in cmd as well but [...] read more
python
python-3.x
youtube-dl
m3u8
0votes
1answer

Error 0xc00d36c4 when open an mp4 downloaded from an html source

I am trying to download an mp4 file of a web page via java, but when I go to save it on my device and then open it I get the error "0xc00d36c4" or the program says that the file is corrupted. This happens to me both if I open [...] read more
java
mp4
0votes
0answers

How to WriteFile in AvsPMod

I'm very new in working with video editing via AviSynth script editor AvsPmod v2.6.3.4 and I want to add some MP4 videos to a big one but WriteFile creates a file with no content. VLC player results in error 0xc00d36c4 file cannot be played back. Starting the 27MB video with [...] read more
video
mp4
avisynth
0votes
0answers

Gstreamer Filesink Save Problem : 0xc00d36c4

I tried saving to file to .mp4 with this pipeline in winform c# : "udpsrc port=6670 caps="application/x-rtp, media=video, clock-rate=90000, encoding-name=H264, payload=101" ! rtph264depay ! video/x-h264, stream-format=byte-stream ! h264parse ! video/x-h264, stream-format=byte-stream, alignment=au ! avdec_h264 ! tee name=record ! queue leaky=1 ! videoconvert ! autovideosink sync=false record. ! queue2 ! x264enc [...] read more
c#
stream
streaming
gstreamer
pipeline
0votes
2answers

Can't open downloaded .mp4 files downloaded with requests and urllib

I've downloaded some files using requests url = 'https://www.youtube.com/watch?v=gp5tziO5lXg&feature=youtu.be' video_name = url.split('/')[-1] print("Downloading file:%s" % video_name) # download the url contents in binary format r = requests.get(url) # open method to open a file on your system and write the contents with open('saved.mp4', 'wb') as f: f.write(r.content) and using urllib.requests [...] read more
python
windows
python-requests
urllib
mp4
0votes
2answers

Does Unity video player support smooth streaming or video on demand or HLS?

I'm developing an augmented-reality application in unity which shows a video from the azure blobs, recently i changed the blob to have a streaming end point using the azure media services. But the problem is when i gave the streaming end point URL for the unity video player it shows [...] read more
unity3d
augmented-reality
video-player
0votes
1answer

Reading and writing WAVE file produces unplayable output

I want to add echo to wave file, in order to do so I need to open it and then save it first. I've written some methods but output file is not correct. Testing input file size: 731 014 Output file sieze: 730 898 But the "space on disc" is [...] read more
c#
wav
0votes
0answers

Trouble with sounds in Monogame

I am able to load WAV files as SoundEffect and play them, but any other format, e.g. MP3, WMA, OGG is failing with below exception; Exception thrown: 'SharpDX.SharpDXException' in SharpDX.dll An unhandled exception of type 'SharpDX.SharpDXException' occurred in SharpDX.dll HRESULT: [0xC00D36C4], Module: [Unknown], ApiCode: [Unknown/Unknown], Message: The byte stream type [...] read more
c#
visual-studio
audio
monogame
0votes
0answers

C# TagLib raise 0xc00d36c4 after add Album Image From Url

I try to add album image to my mp3 audio file use TagLib. but if I open mp3 file after adding album art, the player raises the error 0xc00d36c4. this is the code I tried... var wReq = (HttpWebRequest)WebRequest.Create(procItem.Thumbnail); var wRes = (HttpWebResponse)wReq.GetResponse(); byte[] buffer = new byte[1024]; using (MemoryStream [...] read more
c#
taglib
0votes
1answer

Reading mov files with VideoReader

I'm trying to read a .mov movie file into MATLAB as follows: v=VideoReader('file.mov'); I get the following error message: Error using VideoReader/init (line 619) Could not read file due to an unexpected error. Reason: Error Creating Source Reader Reason: Unknown error 0xC00D36C4 Error in VideoReader (line 172) obj.init(fileName); How can [...] read more
matlab
video
0votes
1answer

MediaPlayer error: The byte stream type of the given URL is unsupported. (Exception from HRESULT: 0xC00D36C4)

I am new to UWP. I am recording voice input (with MediaCapture) and then I trying to play it back. And I am getting the following error The byte stream type of the given URL is unsupported. (Exception from HRESULT: 0xC00D36C4) I create is an MP3 file that can be [...] read more
uwp
media-player
mediaplayback
0votes
1answer

does media foundation support WTV?

WTV is Microsoft's proprietary format. But when I use CreateObjectFromURL to open a WTV file, it simply complains "Could not open the file. (HRESULT = 0xc00D36C4)". How can I render a wtv file? read more
ms-media-foundation
0votes
1answer

Error playing a .mov video from Videos folder (using MediaElement)

What am I trying? I am trying to load a quicktime movie from the Video Library like this: async void SetupVideoAsyncAndPlay() { StorageFolder folder = await KnownFolders.VideosLibrary.GetFolderAsync("Video Folder"); StorageFile file = await folder.GetFileAsync("test_video.mov"); // Ensure a file was selected if (file != null) { var fileStream = await file.OpenAsync(Windows.Storage.FileAccessMode.ReadWrite); Video.SetSource(fileStream, [...] read more
video
windows-8
quicktime
mediaelement
mov

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