C++ で PPTX をビデオに変換する

C++ コードを使用して PowerPoint をビデオに変換するための強力なクロスプラットフォーム C++ API

Aspose.Slides を使用して PowerPoint をビデオに変換する

Aspose.Slides for C++ は、プレゼンテーションの作成、編集、操作に使用される強力な C++ ライブラリであり、PowerPoint プレゼンテーションを他のドキュメントやビデオに変換することもできます。 。この場合、PowerPoint をビデオに変換するには、ffmpeg とともに Aspose.Slides を使用する必要があります。

これは、PPTX からビデオへの変換プロセスの仕組みです。Aspose.Slides を使用して (プレゼンテーション スライドから) 一連のフレームを生成し、次に FFMpegCore (ffmpeg) を使用してフレームに基づいてビデオを作成します。

PPTXをビデオに変換する方法

  1. こちら の手順に従って Aspose.Slides for C++ をインストールします。 ffmpeg ここから をダウンロードします。

  2. ffmpeg.exeへのパスを環境変数PATHに追加します。

  3. C++ PowerPoint to video コードをコピーして貼り付け、実行します。

C++ で PowerPoint をビデオに変換する

この C++ コードを使用して、PPTX をビデオに変換します。

PowerPoint をビデオに変換するための C++ コード


void OnFrameTick(System::SharedPtr<PresentationPlayer> sender, System::SharedPtr<FrameTickEventArgs> args)
{
    System::String fileName = System::String::Format(u"frame_{0}.png", sender->get_FrameIndex());
    args->GetFrame()->Save(fileName);
}

void Run()
{
    auto presentation = System::MakeObject<Presentation>();
    auto slide = presentation->get_Slide(0);

    // Adds a smile shape and then animates it
    System::SharedPtr<IAutoShape> smile = slide->get_Shapes()->AddAutoShape(ShapeType::SmileyFace, 110.0f, 20.0f, 500.0f, 500.0f);
    auto sequence = slide->get_Timeline()->get_MainSequence();
    System::SharedPtr<IEffect> effectIn = sequence->AddEffect(smile, EffectType::Fly, EffectSubtype::TopLeft, EffectTriggerType::AfterPrevious);
    System::SharedPtr<IEffect> effectOut = sequence->AddEffect(smile, EffectType::Fly, EffectSubtype::BottomRight, EffectTriggerType::AfterPrevious);
    effectIn->get_Timing()->set_Duration(2.0f);
    effectOut->set_PresetClassType(EffectPresetClassType::Exit);

    const int32_t fps = 33;

    auto animationsGenerator = System::MakeObject<PresentationAnimationsGenerator>(presentation);
    auto player = System::MakeObject<PresentationPlayer>(animationsGenerator, fps);
    player->FrameTick += OnFrameTick;
    animationsGenerator->Run(presentation->get_Slides());

    const System::String ffmpegParameters = System::String::Format(
        u"-loglevel {0} -framerate {1} -i {2} -y -c:v {3} -pix_fmt {4} {5}",
        u"warning", m_fps, "frame_%d.png", u"libx264", u"yuv420p", "video.mp4");
    auto ffmpegProcess = System::Diagnostics::Process::Start(u"ffmpeg", ffmpegParameters);
    ffmpegProcess->WaitForExit();
}

その他のサポートされている変換

PowerPoint を他の形式のファイルに変換することもできます