Recently, i searched alot on the internet for a good C# lib to Extract bitmaps from MP4 videos, and i found somethings that were similar to this code, but not to MP4:
        VideoStream stream = aviManager.GetVideoStream(@"C:\Users\User\Desktop\video.mp4");
        //the video.mp4 is usually .avi or .mpeg
        for (int n = 0; n < stream.CountFrames; n++)
        {
            Bitmap bmp = new Bitmap(stream.GetBitmap(Position));
            bmp.Save(@"C:\Users\Nehoray\Desktop\Something.png");
            bmp.Dispose;
        }
Can anyone give me a library with an easy code like this, just for MP4? :)