I'm trying to split a *.mov
file in to raw audio an raw video. I have a DirectShow
filter which is working as decoder for the video stream and Windows Media Player can actually see and use it to play this video file but I having a hard time figuring out how does it work exactly since I need to compose a complex DirectShow graph.
I assumed that WMP will use WM ASF Rreader
but if I try to add this filter to the graph in GraphEdit with *.mov file as parameter it's failing with 0xc00d0026
error code which makes sense since it's suppose to work with uncompressed formats only.
Which other DirectShow source filters can be used by WMP in order to split a *.mov video file in to raw video and audio?
问问题
795 次
1 回答
0
Windows Media Player(当前版本,不是旧版本)不使用 DirectShow 处理 MOV 文件。相反,它使用媒体基础。
仅供参考:0xC00D0026
是NS_E_UNRECOGNIZED_STREAM_TYPE
“无法识别指定的协议。请确保文件名和语法(例如斜杠)对于协议是正确的。”
我想您可以找到合适的 DirectShow 组件来解复用 MOV 文件:Haali Media Splitter、GDCL MPEG-4 Demultiplexer被广泛使用。
于 2013-06-17T07:58:36.890 回答