Converter PPTX para vídeo em C#
Poderosa API .NET multiplataforma para converter PowerPoint em vídeo usando código C# em plataformas NET Framework, .NET Core, Windows Azure, Mono ou Xamarin
Converter PowerPoint para vídeo usando Aspose.Slides
Aspose.Slides for .NET é uma poderosa biblioteca .NET usada para criar, editar e manipular apresentações e também converter apresentações do PowerPoint em outros documentos e vídeos. Nesse caso, para converter PowerPoint em vídeo, você precisa usar Aspose.Slides juntamente com ffmpeg e FFMpegCore (um NET ffmpeg wrapper gratuito).
É assim que funciona o processo de conversão de PPTX para vídeo: Aspose.Slides é usado para gerar um conjunto de quadros (a partir dos slides da apresentação) e então FFMpegCore (ffmpeg) é usado para criar um vídeo baseado nos quadros.
Como converter PPTX para vídeo
Instale Aspose.Slides para .NET e FFMpegcore: Execute
dotnet add package Aspose.Slides.NET --version 22.12.0
e então executedotnet add package FFMpegCore --version 4.8.0
Baixe o ffmpeg aqui.
FFMpegCore requer que você especifique o caminho para o ffmpeg baixado (por exemplo, extraído para “C:\tools\ffmpeg”):
GlobalFFOptions.Configure(new FFOptions { BinaryFolder = @"c:\tools\ffmpeg\bin",} );
Copie, cole e execute o PowerPoint para código de vídeo.
Converter PowerPoint para vídeo em C#
Use este código para converter PPTX em vídeo:
Código C# para converter PowerPoint em vídeo
using System.Collections.Generic;
using Aspose.Slides;
using FFMpegCore; // Will use FFmpeg binaries we extracted to "c:\tools\ffmpeg" before
using Aspose.Slides.Animation;
using (Presentation presentation = new Presentation())
{
// Adds a smile shape and then animates it
IAutoShape smile = presentation.Slides[0].Shapes.AddAutoShape(ShapeType.SmileyFace, 110, 20, 500, 500);
IEffect effectIn = presentation.Slides[0].Timeline.MainSequence.AddEffect(smile, EffectType.Fly, EffectSubtype.TopLeft, EffectTriggerType.AfterPrevious);
IEffect effectOut = presentation.Slides[0].Timeline.MainSequence.AddEffect(smile, EffectType.Fly, EffectSubtype.BottomRight, EffectTriggerType.AfterPrevious);
effectIn.Timing.Duration = 2f;
effectOut.PresetClassType = EffectPresetClassType.Exit;
const int Fps = 33;
List<string> frames = new List<string>();
using (var animationsGenerator = new PresentationAnimationsGenerator(presentation))
using (var player = new PresentationPlayer(animationsGenerator, Fps))
{
player.FrameTick += (sender, args) =>
{
string frame = $"frame_{(sender.FrameIndex):D4}.png";
args.GetFrame().Save(frame);
frames.Add(frame);
};
animationsGenerator.Run(presentation.Slides);
}
// Configure ffmpeg binaries folder. See this page: https://github.com/rosenbjerg/FFMpegCore#installation
GlobalFFOptions.Configure(new FFOptions { BinaryFolder = @"c:\tools\ffmpeg\bin", });
// Converts frames to webm video
FFMpeg.JoinImageSequence("smile.webm", Fps, frames.Select(frame => ImageInfo.FromPath(frame)).ToArray());
}
Outras conversões compatíveis
Você também pode converter PowerPoint para arquivos em outros formatos