1

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?

Farhan Ghumra
  • 15,180
  • 6
  • 50
  • 115

2 Answers2

1

Not C++, but Windows.Media.Editing and Windows.Media.Effects may be of some help to you:

http://msdn.microsoft.com/en-us/library/windowsphone/develop/windows.media.editing.Aspx

http://msdn.microsoft.com/en-us/library/windowsphone/develop/windows.media.effects.aspx

James
  • 802
  • 5
  • 17