I have a DirectShow graph, contains file source filter, splitter filter, decoders for video and audio and renderers. (The data is possibly encrypted, so the splitter just split it to video and audion and the decoders actually decrypts the data).
Now, I want to change the graph to work with live streams instead of files as source. Is there a free (preferred open source) such source filter?
Thank you.
If by live streams you mean Windows Media over HTTP, you could try this:
First define a GUID for CLSID_NetShowSource, something like
Then you can use it as follows:
It’s been a while since I implemented this, I hope it’s helpful. I’m pretty sure this snippet is missing some error checking.