Dear Support,
I’m trying to generate PowerPoint document with video from web source. I’ve implemented simple code based on Aspose.Slides and documentation:
var url = "http://s3.amazonaws.com/mr-ppt-video-production/b4ac7eb6-7d56-4105-9de1-a8769cbf0ba8.mp4"; using (var pres = new Presentation()) { var videoFrame = pres.Slides[0].Shapes.AddVideoFrame(10, 10, 427, 240, url); videoFrame.PlayMode = VideoPlayModePreset.Auto; pres.Save("test.pptx", Aspose.Slides.Export.SaveFormat.Pptx); }
As result, video in the generated document works for PPT 2013, but does not work for PPT 2016:
- When slideshow is run, PPT 2013 plays the video, PPT 2016 does not.
- If try to play video manually from the slide, it works in PPT 2013 again, but PPT 2016 shows error message that content is not available
Has anybody experienced similar issue?
Please advise.