Custom DirectShow Title Filter

All I have to do is play the AVI video from memory. I cannot write it to disc for security reasons. As far as I know, the embedded AVI graphics player received from the call RenderFile

will only play files.

Is there a DirectShow graph that will play AVIs from memory? If not, how can I modify or create a schedule that will do this?

+2


source to share


1 answer


The graph has an original filter, demux, and then decoders and renderers. The original filter is just a wrapper around the file access APIs. If you replace the source material filter with a custom one, you can play from memory or from any repository accessed by the custom filter.

The sdk has a sample source filter that reads the entire file into memory and uses it.



FROM

+5


source







All Articles