jumpcutking
jumpcutking

Reputation: 620

Using the DirectX 11 SDK, How do I load a video (with sound) and play it?

I am having problems locating any documentation or examples for rendering video on a form using DirectX. I need to use DirectX because I will be putting overlay's on the video loaded dynamically. I will also want to perform transitions between 2 video instances.

I can not find any documentation on Google or Microsoft's site, any thing to point me in the right direction would help. Such as render the video on a 3d object as a texture, maybe... IDK?

This is for Visual Studio 2010, .net framework 4.0, using vb.net.

Upvotes: 2

Views: 1396

Answers (1)

Goz
Goz

Reputation: 62333

DirectX 11 is not for rendering video. It is for 3D graphics, Audio and Input.

Look up DirectShow (Which MS are trying to replace) or the Media Foundation (which they are attempting to replace DShow with).

Upvotes: 1

Related Questions