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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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