gpt4 book ai didi

c# - 使用Spire将YouTube视频嵌入PowerPoint中。

转载 作者:行者123 更新时间:2023-12-03 06:11:45 26 4
gpt4 key购买 nike

我正在使用Spire.Presentation使用.NET创建PowerPoint演示文稿。

插入本地保存的视频非常像这样:

public static void SetVideoMedia(this ISlide slide, int index, string pathToVideo)
{
var shape = slide.Shapes[index];
var rect = new RectangleF(shape.Left, shape.Top, shape.Width, shape.Height);

slide.Shapes.AppendVideoMedia(pathToVideo, rect, true);
slide.Shapes.Remove(shape);
}

但是我找不到如何插入YouTube视频的方法,也找不到指南中的任何内容...

我发现的唯一东西是带有某种标记的该网站:
https://sourceforge.net/p/spirepresentation/discussion/markdown_syntax#md_ex_video

但是我不知道如何在代码中使用它。有人知道如何嵌入YouTube视频吗?

最佳答案

尝试将true更改为false。 False-由于链接的目标是其父目录之外的目录。
AppendVideoMedia(URL, rectangle, false);
链接:https://www.e-iceblue.com/forum/how-are-videos-are-embedded-t6050.html

关于c# - 使用Spire将YouTube视频嵌入PowerPoint中。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51838146/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com