PowerPoint をビデオに変換すると、アクセシビリティが向上し、プレゼンテーションやコンテンツの視聴者が増加します。 MP4 ビデオ形式は非常に人気のあるファイル形式であるため、PPT ファイル。さらに、ほとんどの人は他の形式のコンテンツよりもビデオを視聴し、消費することが多いため、ビデオはプレゼンテーションと比較してより多くの視聴者を獲得する可能性があります。
Java での PowerPoint からビデオへの変換
この記事を読み終わる頃には、Java で PowerPoint をビデオに変換する方法を習得しているでしょう。
PPT をビデオに変換する Java API
PowerPoint プレゼンテーションをプログラムでビデオに変換するには、次のものが必要です。
- プレゼンテーション スライドから一連のフレームを生成する API。 Aspose.Slides for Java をお勧めします。 Aspose.Slides for Java は、PowerPoint プレゼンテーション (Microsoft PowerPoint または Office を使用しない) を作成、編集、変換、操作するための一般的な API です。 Aspose.Slides for Java をインストールするには、インストール を参照してください。
- そして、生成されたフレームに基づいてビデオを作成するための別の API。 ffmpeg (Java 用) をお勧めします。
情報: Aspose は、プレゼンテーションから素晴らしいビデオを作成できる無料の PowerPoint からビデオ コンバーター を開発しました。このコンバータは基本的に、PowerPoint からビデオへの変換プロセスのライブ実装です。
Java で PPT をビデオに変換
- これを POM ファイルに追加します。
<dependency>
<groupId>net.bramp.ffmpeg</groupId>
<artifactId>ffmpeg</artifactId>
<version>0.7.0</version>
</dependency>
ffmpeg を こちら からダウンロードします。
PowerPoint to video 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);
次に、オブジェクト上の段落をアニメーション化して、それらのオブジェクトが次々に表示されるようにします (表示間の遅延を 1 秒に設定)。
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 機能 の詳細については、ドキュメント を参照してください。/)。ご質問がある場合は、フォーラム に投稿してください。