I'm trying to come up with a method of creating a video file (or even an animated gif), using a collection of BitmapImage
in a Windows 10 application (UWP). I noticed that the mobile extensions have a ScreenCapture class (I'm not sure if that would do what I need anyway), but I need this to work on desktop as a minimum. I've had a play with the MediaCapture
class, but am unable to find any methods that allow me to record images from the screen, or manipulate the video directly.
Windows.Media.Capture.MediaCapture mc = new Windows.Media.Capture.MediaCapture();
mc.StartRecordToStreamAsync()
Is what I'm trying to do possible using UWP in C#, and if so, how?