將 PPT 轉換為視頻

當您將 PowerPoint 轉換為視頻時,您的演示文稿或內容將獲得更高的可訪問性和更多的受眾。 MP4 視頻格式是一種非常流行的文件格式,因此與 PPT 相比,更多人會發現打開或播放您的視頻更容易://docs.fileformat.com/presentation/ppt/) 文件。此外,與其他形式的內容相比,大多數人觀看和消費視頻的次數更多,因此與演示文稿相比,您的視頻可能會吸引更多的觀眾。

用 Java 將 PowerPoint 轉為視頻

讀完本文後,您將了解如何使用 Java 將 PowerPoint 轉換為視頻。

將 PPT 轉換為視頻的 Java API

在 PowerPoint 中創建視頻

要以編程方式將 PowerPoint 演示文稿轉換為視頻,您需要:

  • 從演示幻燈片生成一組幀的 API。我們推薦 Aspose.Slides for Java。 Aspose.Slides for Java 是一種流行的 API,用於創建、編輯、轉換和操作 PowerPoint 演示文稿(無需 Microsoft PowerPoint 或 Office)。要安裝 Aspose.Slides for Java,請參閱安裝
  • 另一個 API 用於根據生成的幀創建視頻。我們推薦 ffmpeg(用於 Java)。

信息:Aspose 開發了一個免費的 PowerPoint 到視頻轉換器,它允許您從演示文稿創建令人驚嘆的視頻。該轉換器本質上是 PowerPoint 到視頻轉換過程的實時實現。

在 Java 中將 PPT 轉換為視頻

  1. 將此添加到您的 POM 文件中:
   <dependency>
     <groupId>net.bramp.ffmpeg</groupId>
     <artifactId>ffmpeg</artifactId>
     <version>0.7.0</version>
   </dependency>
  1. 此處 下載 ffmpeg。

  2. 運行 PowerPoint 到視頻 Java 代碼。

此 Java 代碼向您展示瞭如何將 PPT 轉換為視頻:

Presentation presentation = new Presentation();
try {
    // 添加微笑形狀,然後對其進行動畫處理
    IAutoShape smile = presentation.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.SmileyFace, 110, 20, 500, 500);
    ISequence mainSequence = presentation.getSlides().get_Item(0).getTimeline().getMainSequence();
    IEffect effectIn = mainSequence.addEffect(smile, EffectType.Fly, EffectSubtype.TopLeft, EffectTriggerType.AfterPrevious);
    IEffect effectOut = mainSequence.addEffect(smile, EffectType.Fly, EffectSubtype.BottomRight, EffectTriggerType.AfterPrevious);
    effectIn.getTiming().setDuration(2f);
    effectOut.setPresetClassType(EffectPresetClassType.Exit);

    final int fps = 33;
    ArrayList<String> frames = new ArrayList<String>();

    PresentationAnimationsGenerator animationsGenerator = new PresentationAnimationsGenerator(presentation);
    try
    {
        PresentationPlayer player = new PresentationPlayer(animationsGenerator, fps);
        try {
            player.setFrameTick((sender, arguments) ->
            {
                try {
                    String frame = String.format("frame_%04d.png", sender.getFrameIndex());
                    ImageIO.write(arguments.getFrame(), "PNG", new java.io.File(frame));
                    frames.add(frame);
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            });
            animationsGenerator.run(presentation.getSlides());
        } finally {
            if (player != null) player.dispose();
        }
    } finally {
        if (animationsGenerator != null) animationsGenerator.dispose();
    }

    // 配置 ffmpeg 二進製文件文件夾。請參閱此頁面:https://github.com/rosenbjerg/FFMpegCore#installation
    FFmpeg ffmpeg = new FFmpeg("path/to/ffmpeg");
    FFprobe ffprobe = new FFprobe("path/to/ffprobe");

    FFmpegBuilder builder = new FFmpegBuilder()
            .addExtraArgs("-start_number", "1")
            .setInput("frame_%04d.png")
            .addOutput("output.avi")
            .setVideoFrameRate(FFmpeg.FPS_24)
            .setFormat("avi")
            .done();

    FFmpegExecutor executor = new FFmpegExecutor(ffmpeg, ffprobe);
    executor.createJob(builder).run();
} catch (IOException e) {
    e.printStackTrace();
}

在視頻中應用效果和動畫

PowerPoint 允許您將動畫應用於演示文稿的內容,還可以在幻燈片之間使用過渡。這些效果使演示文稿(尤其是幻燈片形式)更具吸引力和趣味性。當您將 PowerPoint 演示文稿轉換為視頻時,在生成的視頻中使用類似的效果是有意義的,而 Aspose.Slides 允許您精確地做到這一點。

為了演示視頻中效果和動畫的使用,讓我們以這種方式在上一節的演示代碼中添加另一張幻燈片和過渡:

// 添加微笑形狀並為其設置動畫

// ...

// 添加新的幻燈片和動畫過渡

ISlide newSlide = presentation.getSlides().addEmptySlide(presentation.getSlides().get_Item(0).getLayoutSlide());

newSlide.getBackground().setType(BackgroundType.OwnBackground);

newSlide.getBackground().getFillFormat().setFillType(FillType.Solid);

newSlide.getBackground().getFillFormat().getSolidFillColor().setColor(Color.MAGENTA);

newSlide.getSlideShowTransition().setType(TransitionType.Push);

然後我們為對像上的段落設置動畫,使這些對像一個接一個地出現(出現之間的延遲設置為一秒):

Presentation presentation = new Presentation();
try {
    // 添加文本和動畫
    IAutoShape autoShape = presentation.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.Rectangle, 210, 120, 300, 300);
    Paragraph para1 = new Paragraph();
    para1.getPortions().add(new Portion("Aspose Slides for Java"));
    Paragraph para2 = new Paragraph();
    para2.getPortions().add(new Portion("convert PowerPoint Presentation with text to video"));

    Paragraph para3 = new Paragraph();
    para3.getPortions().add(new Portion("paragraph by paragraph"));
    IParagraphCollection paragraphCollection = autoShape.getTextFrame().getParagraphs();
    paragraphCollection.add(para1);
    paragraphCollection.add(para2);
    paragraphCollection.add(para3);
    paragraphCollection.add(new Paragraph());

    ISequence mainSequence = presentation.getSlides().get_Item(0).getTimeline().getMainSequence();
    IEffect effect1 = mainSequence.addEffect(para1, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious);
    IEffect effect2 = mainSequence.addEffect(para2, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious);
    IEffect effect3 = mainSequence.addEffect(para3, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious);
    IEffect effect4 = mainSequence.addEffect(para3, EffectType.Appear, EffectSubtype.None, EffectTriggerType.AfterPrevious);

    effect1.getTiming().setTriggerDelayTime(1f);
    effect2.getTiming().setTriggerDelayTime(1f);
    effect3.getTiming().setTriggerDelayTime(1f);
    effect4.getTiming().setTriggerDelayTime(1f);

    final int fps = 33;
    ArrayList<String> frames = new ArrayList<String>();

    PresentationAnimationsGenerator animationsGenerator = new PresentationAnimationsGenerator(presentation);
    try
    {
        PresentationPlayer player = new PresentationPlayer(animationsGenerator, fps);
        try {
            player.setFrameTick((sender, arguments) ->
            {
                try {
                    String frame = String.format("frame_%04d.png", sender.getFrameIndex());
                    ImageIO.write(arguments.getFrame(), "PNG", new java.io.File(frame));
                    frames.add(frame);
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            });
            animationsGenerator.run(presentation.getSlides());
        } finally {
            if (player != null) player.dispose();
        }
    } finally {
        if (animationsGenerator != null) animationsGenerator.dispose();
    }

    // 配置 ffmpeg 二進製文件文件夾。請參閱此頁面:https://github.com/rosenbjerg/FFMpegCore#installation
    FFmpeg ffmpeg = new FFmpeg("path/to/ffmpeg");
    FFprobe ffprobe = new FFprobe("path/to/ffprobe");

    FFmpegBuilder builder = new FFmpegBuilder()
            .addExtraArgs("-start_number", "1")
            .setInput("frame_%04d.png")
            .addOutput("output.avi")
            .setVideoFrameRate(FFmpeg.FPS_24)
            .setFormat("avi")
            .done();

    FFmpegExecutor executor = new FFmpegExecutor(ffmpeg, ffprobe);
    executor.createJob(builder).run();
} catch (IOException e) {
    e.printStackTrace();
}

獲得免費許可證

如果您想不受限制地嘗試 Aspose.Slides 的功能,我們建議您獲得一個免費的臨時許可證

結論

我們相信您現在知道如何將 PPT 轉換為視頻,以及如何在您的作品中應用動畫、過渡和其他效果。

要了解有關 Aspose.Slides 功能 的更多信息,請參閱我們的文檔.如果您有任何問題,可以在我們的論壇 上發帖。

也可以看看