I am receiving input from a video input device and successfully outputting to a System.Windows.Controls.Image in my WPF form. I want to record the received video and save it to disc. I have gone about this thus:
- created a class that stores A BitmapImage and the time that it was taken for each frame outputted to the screen. The BitmapImage is created from the BitmapSource created directly from the video input
- I have a list of the above class, each time that a new frame is received, I construct such a class and add it to the list
- when I come to save it, I use Splicer to construct a WMV, then save it to disc
The problem is that after about 10ish seconds (~400 frames) I get an OutOfMemoryException at different points whenever I run the program.
I tried to solve this problem by compressing each stored BitmapImage to png, jpeg and tiff, but this caused the frame rate to drop dramatically, and didn't actually buy me much more time.
Have I gone about this the completely wrong way? Or is there some work around or something that someone can recommend?
Edit
Having been asked to paste code, here is the relevant code: This is the class that stores the image
public class ImageVideoFrame
{
private System.Drawing.Image frame;
private long time;
public System.Drawing.Image Frame
{
get { return frame; }
}
public long Time
{
get { return time; }
}
public ImageVideoFrame(System.Drawing.Image frame, long time)
{
this.frame = frame;
this.time = time;
}
public void Dispose()
{
frame.Dispose();
}
}
Bitmap GetBitmap(BitmapSource source)
{
MemoryStream ms = new MemoryStream();
BitmapEncoder enc = new BmpBitmapEncoder();
BitmapFrame frame = BitmapFrame.Create(source);
enc.Frames.Add(BitmapFrame.Create(source));
enc.Save(ms);
Bitmap bm = new Bitmap(ms);
ms.Close();
return bm;
}
And here is where each frame is drawn and stored:
public void DrawVideoFrame(PlanarImage img, System.Windows.Controls.Image dest)
{
// 32-bit per pixel, RGBA image
BitmapSource tempSource = BitmapSource.Create(img.Width, img.Height,
96, 96, PixelFormats.Bgr32, null, img.Bits, img.Width * img.BytesPerPixel);
dest.Source = tempSource;
if (recordVideo) //record video is set elsewhere
{
videoRecordings.Add(new ImageVideoFrame(tempSource,
DateTime.Now.Ticks / 10000));
}
}
Thanks for the help guys!!