We need the presentation file that can be used to reproduce the error and fix it. It will be great if you can provide the presentation.Otherwise, we will not be able to find the cause of the problem and fix it.
I finally reproduced the problem and here are pptx and video to insert and code:
i am trying to replace a video as follows and that line + the video vFrame.EmbeddedVideo = newVideo; causes "Exception ”Method Is Not Implemented” when saving the pptx file !
using (var newVideoStream = File.OpenRead(vid_normalized))
{
var newVideo = presentation.Videos.AddVideo(newVideoStream, LoadingStreamBehavior.ReadStreamAndRelease);
// Replace the embedded video.
**vFrame.EmbeddedVideo = newVideo; **
success = true;
}