视频帧
Contents
[
Hide
]
在演示文稿中恰当地放置视频可以使您的信息更具吸引力,并提高与观众的互动水平。
PowerPoint允许您通过两种方式将视频添加到演示文稿中的幻灯片中:
- 添加或嵌入本地视频(存储在您的计算机上)
- 添加在线视频(来自诸如YouTube等网络来源)。
为了让您将视频(视频对象)添加到演示文稿中,Aspose.Slides提供了IVideo接口、IVideoFrame接口和其他相关类型。
创建嵌入视频帧
如果要添加到幻灯片的视频文件存储在本地,您可以创建一个视频帧以将视频嵌入到您的演示文稿中。
- 创建一个Presentation类的实例。
- 通过索引获取幻灯片的引用。
- 添加一个IVideo对象,并传递视频文件路径以将视频嵌入到演示文稿中。
- 添加一个IVideoFrame对象以为视频创建一个帧。
- 保存修改后的演示文稿。
以下Java代码演示了如何将存储在本地的视频添加到演示文稿中:
// Instantiates the Presentation class
Presentation pres = new Presentation("pres.pptx");
try {
// Loads the video
FileInputStream fileStream = new FileInputStream("Wildlife.mp4");
IVideo video = pres.getVideos().addVideo(fileStream, LoadingStreamBehavior.KeepLocked);
// Gets the first slide and adds a videoframe
pres.getSlides().get_Item(0).getShapes().addVideoFrame(10, 10, 150, 250, video);
// Saves the presentation to disk
pres.save("pres-with-video.pptx", SaveFormat.Pptx);
} catch (IOException e) {
} finally {
if (pres != null) pres.dispose();
}
或者,您可以通过直接将视频文件路径传递给addVideoFrame(float x, float y, float width, float height, IVideo video)方法来添加视频:
Presentation pres = new Presentation();
try {
ISlide sld = pres.getSlides().get_Item(0);
IVideoFrame vf = sld.getShapes().addVideoFrame(50, 150, 300, 150, "video1.avi");
} finally {
if (pres != null) pres.dispose();
}
使用网络来源的视频创建视频帧
Microsoft PowerPoint 2013及更新版本支持在演示文稿中播放YouTube视频。如果您要使用的视频在线可用(例如,在YouTube上),则可以通过其网络链接将其添加到您的演示文稿中。
- 创建一个Presentation类的实例
- 通过索引获取幻灯片的引用。
- 添加一个IVideo对象并传递视频链接。
- 为视频帧设置一个缩略图。
- 保存演示文稿。
以下Java代码演示了如何将网络视频添加到PowerPoint演示文稿中的幻灯片:
// Instantiates a Presentation object that represents a presentation file
Presentation pres = new Presentation();
try {
addVideoFromYouTube(pres, "Tj75Arhq5ho");
pres.save("out.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
private static void addVideoFromYouTube(Presentation pres, String videoID)
{
// Adds a videoFrame
IVideoFrame videoFrame = pres.getSlides().get_Item(0).getShapes().addVideoFrame(
10, 10, 427, 240, "https://www.youtube.com/embed/" + videoID);
videoFrame.setPlayMode(VideoPlayModePreset.Auto);
// Loads thumbnail
String thumbnailUri = "http://img.youtube.com/vi/" + videoID + "/hqdefault.jpg";
URL url;
try {
url = new URL(thumbnailUri);
videoFrame.getPictureFormat().getPicture().setImage(pres.getImages().addImage(url.openStream()));
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
从幻灯片中提取视频
除了将视频添加到幻灯片中,Aspose.Slides还允许您提取嵌入在演示文稿中的视频。
- 创建一个Presentation类的实例以加载包含视频的演示文稿。
- 遍历所有ISlide对象。
- 遍历所有IShape对象以寻找VideoFrame。
- 将视频保存到磁盘。
以下Java代码演示了如何提取演示文稿幻灯片上的视频:
// Instantiates a Presentation object that represents a presentation file
Presentation pres = new Presentation("VideoSample.pptx");
try {
for (ISlide slide : pres.getSlides())
{
for (IShape shape : slide.getShapes())
{
if (shape instanceof VideoFrame)
{
IVideoFrame vf = (IVideoFrame) shape;
String type = vf.getEmbeddedVideo().getContentType();
int ss = type.lastIndexOf('-');
byte[] buffer = vf.getEmbeddedVideo().getBinaryData();
//Gets the File Extension
int charIndex = type.indexOf("/");
type = type.substring(charIndex + 1);
FileOutputStream fop = new FileOutputStream("testing2." + type);
fop.write(buffer);
fop.flush();
fop.close();
}
}
}
} catch (IOException e) {
} finally {
if (pres != null) pres.dispose();
}