Answered by:
How to mix two Video files in windows phone 8 sdk

Question
-
Hi All,
I am developing an app for windows phone, in that i want to mix two video files I have searched a lot and finally fount this
http://splicer.codeplex.com/releases/view/14364
but No Luck it doesn't support for Windows Phone 8. Can any one tell me how to do that
Thanks in Advance !!!
Monday, August 11, 2014 7:52 PM
Answers
-
Hi Mithun,
C# in general is not setup to do movie editing. What I can find is an introduction about the APIs in windows phone. Please refer to see the Video Editing APIs for windows phone. http://channel9.msdn.com/Events/Build/2014/2-555.
Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click HERE to participate the survey.- Edited by Herro wongMicrosoft contingent staff, Moderator Tuesday, August 12, 2014 7:27 AM
- Marked as answer by Mithun.k07 Wednesday, August 13, 2014 11:44 AM
Tuesday, August 12, 2014 7:25 AMModerator
All replies
-
Hi Mithun,
C# in general is not setup to do movie editing. What I can find is an introduction about the APIs in windows phone. Please refer to see the Video Editing APIs for windows phone. http://channel9.msdn.com/Events/Build/2014/2-555.
Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click HERE to participate the survey.- Edited by Herro wongMicrosoft contingent staff, Moderator Tuesday, August 12, 2014 7:27 AM
- Marked as answer by Mithun.k07 Wednesday, August 13, 2014 11:44 AM
Tuesday, August 12, 2014 7:25 AMModerator -
@Herro wong Your answer helped me a lot
But according to my requirement i need to take video file from Assets folder in project and make it as an MediaClip object. Can u tell me how to do that if possible code.
Wednesday, August 13, 2014 11:43 AM -
@Mithun
You can try this code
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///Assets/video.mp4")); MediaClip clip = MediaClip.CreateFromFileAsync(file).AsTask().Result;
Wednesday, August 13, 2014 6:40 PM