Today I tried to include some videos for cutscenes but I failed on even getting the variables recognized.
If I try to access Microsoft.Xna.Framework.Media.Video or Microsoft.Xna.Framework.Media.VideoPlayer it is just missing.
.Media exists but Video/VideoPlayer is just not there
I also can’t use “using Microsoft.Xna.Framework.Media;”.
If I copy the exact same project to the example project on the Microsoft website it recognizes “Video” and “VideoPlayer” but of course everything else will not work cause of the wrong namespace, missing content and all that stuff.
I already reinstalled the complete SDK with XNA and .NET Frameworks but it still doesn’t work.
If I create a new project and copy it there it doesn’t work too, did I miss something?
Do I need something else except using Microsoft.Xna.Framework.Media.Video?
I compared the full projects but couldn’t find any difference at all.
You are missing a reference to
Microsoft.Xna.Framework.Video.dll.That is where those two classes are located.