0x80040265 = VFW_E_UNSUPPORTED_STREAM
Cannot play back the file: the format is not supported.
(standard MP4 files work on my PC, but some don't (like HEVC))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
CoInitialize(NULL);
IGraphBuilder* pGraph;
hr = CoCreateInstance(CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER, IID_IGraphBuilder, (void**)&pGraph);
hr=pGraph->RenderFile(L"d:\\28199253f211dc38eae79da92c44467b.mp4", NULL);
it returns 0x80040265 why?
0x80040265 = VFW_E_UNSUPPORTED_STREAM
Cannot play back the file: the format is not supported.
(standard MP4 files work on my PC, but some don't (like HEVC))
Hi, @mc
From the Supported Formats in DirectShow, mp4 is not supported by default filter.
You may need third party filters.
Best regards,
Minxin Yu
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.