views:

233

answers:

1

I am hosting a MediaElement in a WinForms application, which I would like to play both images and video through. My images and video are set as embedded resources to the application.

The MediaElement.Source property only accepts a URI.

Any ideas on how to get the MediaElement to play the embedded resourece files without writing them to disk?

Thanks.

A: 

MediaElement cannot play from embedded resources files. It would be possible by writing your own DirectShow source filter, but that might be a lot of work for little benefit.

Jeremiah Morrill