彩票走势图

PPT处理控件Aspose.Slides功能演示:使用 C# 在 PowerPoint 演示文稿中嵌入视频

翻译|使用教程|编辑:李显亮|2021-09-22 09:40:56.430|阅读 343 次

概述:在本文中,将学习如何以编程方式处理演示文稿中的视频。特别是,本文将介绍如何使用 C# 在 PowerPoint 演示文稿中嵌入或提取视频。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

PowerPoint 演示文稿中使用视频帧来演示某些内容或吸引观众。通常,视频用于节省时间并使演示更有效。在本文中,将学习如何以编程方式处理演示文稿中的视频。特别是,本文将介绍如何使用 C# 在 PowerPoint 演示文稿中嵌入或提取视频。

  • 使用 C# 在 PowerPoint 演示文稿中嵌入视频
  • 嵌入来自 Web 源的视频
  • 从 PowerPoint 演示文稿中提取视频

为了在 PowerPoint 演示文稿中嵌入或提取视频,我们将使用Aspose.Slides for .NET,API 旨在创建和操作 PowerPoint 和 OpenOffice 文档。

>>你可以点击这里下载Aspose.Slides 最新版测试体验。

使用 C# 在 PowerPoint 演示文稿中嵌入视频

以下是使用 C# 在 PowerPoint 演示文稿中嵌入视频的步骤。

  • 首先,加载 PowerPoint 文件或使用Presentation类创建一个新文件。
  • 然后,在ISlide对象中获取所需幻灯片的引用。
  • 使用Presentation.Videos.AddVideo()方法将新视频添加到演示文稿的视频集合中,并将其引用添加到IVideo对象中。
  • 使用ISlide.Shapes.AddVideoFrame(single, single, single, single, IVideo)方法在幻灯片中添加新的视频帧。
  • 将视频帧引用到IVideoFrame对象中。
  • 设置视频的播放模式和音量。
  • 最后,使用Presentation.Save(String, SaveFormat)方法保存演示文稿。

以下代码示例展示了如何使用 C# 在 PowerPoint 演示文稿中嵌入视频。

// Instantiate Presentation class that represents the PPTX
using (Presentation pres = new Presentation())
{
    // Get the first slide
    ISlide sld = pres.Slides[0];

    // Add video to presentation
    IVideo vid = pres.Videos.AddVideo(new FileStream("Wildlife.mp4", FileMode.Open));

    // Add video frame
    IVideoFrame vf = sld.Shapes.AddVideoFrame(50, 150, 300, 350, vid);

    // Assign video to video frame
    vf.EmbeddedVideo = vid;

    // Set play mode and volume of the video
    vf.PlayMode = VideoPlayModePreset.Auto;
    vf.Volume = AudioVolumeMode.Loud;

    // Write the PPTX file to disk
    pres.Save("VideoFrame_out.pptx", SaveFormat.Pptx);
}

在来自 Web 源的演示文稿中嵌入视频

还可以在 PowerPoint 演示文稿中嵌入来自 Web 源的视频。以下是实现此目的的步骤。

  • 首先,加载 PowerPoint 文件或使用Presentation类创建一个新文件。
  • 然后,在ISlide对象中获取所需幻灯片的引用。
  • 通过在ISlide.Shapes.AddVideoFrame(single, single, single, single, String)方法中指定视频的 URL,在幻灯片中添加新的视频帧。
  • 将视频帧引用到IVideoFrame对象中。
  • 设置视频的播放模式和音量。
  • 使用WebClient设置视频的缩略图。
  • 使用Presentation.Save(String, SaveFormat)方法保存演示文稿。

以下代码示例展示了如何将来自 Web 源的视频嵌入到演示文稿中。

using (Presentation pres = new Presentation())
{
    // Video ID
    string videoId = "Tj75Arhq5ho";

    // Add video frame
    IVideoFrame videoFrame = pres.Slides[0].Shapes.AddVideoFrame(10, 10, 427, 240, "//www.youtube.com/embed/" + videoId);
    videoFrame.PlayMode = VideoPlayModePreset.Auto;

    // Load thumbnail
    using (WebClient client = new WebClient())
    {
        string thumbnailUri = "//img.youtube.com/vi/" + videoId + "/hqdefault.jpg";
        videoFrame.PictureFormat.Picture.Image = pres.Images.AddImage(client.DownloadData(thumbnailUri));
    }

    // Save presentation
    pres.Save("AddVideoFrameFromWebSource_out.pptx", SaveFormat.Pptx);
}

从 C# 中的 PowerPoint 演示文稿中提取视频

Aspose.Slides for .NET 还允许您从演示文稿中提取视频。以下是实现此目的的简单步骤。

  • 首先,使用Presentation类加载 PowerPoint 文件。
  • 然后,通过每个回路I幻灯片式的Presentation.Slides集合。
  • 对于每个I幻灯片式对象,遍历集合IShape的在里面。
  • 如果IShape是VideoFrame,则提取并保存嵌入的视频。

以下代码示例展示了如何使用 C# 从 PowerPoint 演示文稿中提取视频。

// Load a presentation file 
Presentation presentation = new Presentation("Video.pptx");

// Loop through slides in the presentation
foreach (ISlide slide in presentation.Slides)
{
    // Loop through shapes
    foreach (IShape shape in presentation.Slides[0].Shapes)
    {
        if (shape is VideoFrame)
        {
            // Extract and save video
            IVideoFrame vf = shape as IVideoFrame;
            String type = vf.EmbeddedVideo.ContentType;
            int ss = type.LastIndexOf('/');
            type = type.Remove(0, type.LastIndexOf('/') + 1);
            Byte[] buffer = vf.EmbeddedVideo.BinaryData;
            using (FileStream stream = new FileStream("NewVideo_out." + type, FileMode.Create, FileAccess.Write, FileShare.Read))
            {                                                     
                stream.Write(buffer, 0, buffer.Length);
            }
        }
    }
}

如果你想试用Aspose的全部完整功能,可联系在线客服获取30天临时授权体验。


还想要更多吗?您可以点击阅读【Aspose最新资源在线文库】查找需要的教程资源。如果您有任何疑问或需求,请随时加入Aspose技术交流群(761297826),我们很高兴为您提供查询和咨询

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP