I am developing a Windows Phone 8.1 app. Nokia provides fantastic Imaging SDK to apply filters to images. I want to apply filter to a video file. I searched about it & found Media Foundation Transform (MFT). MSDN provided a sample to apply grey scale filter to video. It's totally based on C++. I am totally unknown to C++.
I think I would extract each frame of video, apply filter to each frame & rejoin them to make it a new video. What approach should I use to do that?
Is there any SDK/library available to extract frames? I have one off-topic question also, can I use any native C++ library in Windows Phone or it must be Windows Phone Runtime Component?