I'm going to assume that by "directory" in your question you actually mean "namespace".
And what you are trying is is
using Microsoft.Xna.Framework.Media;
or
Microsoft.Xna.Framework.Media.VideoPlayer videoPlayer;
...
videoPlayer = new Microsoft.Xna.Framework.Media.VideoPlayer();
The reason you are unable to access these namespaces is probably because
you are using the wrong branch of MonoGame. 3D and Video support is provided by the develop3d branch (now the default branch in the official git repository on github: https://github.com/mono/MonoGame)
You will have to get the source for that branch and compile it yourself (just load the project in VS2012)
As a starting point, take a look at the VideoPlayer sample in MonoGame-Samples: https://github.com/CartBlanche/MonoGame-Samples/tree/master/VideoPlayer