เมื่อเทียบกับงานนำเสนอ PowerPoint (PPT หรือ PPTX) วิดีโอ ( MP4) เป็นรูปแบบไฟล์ที่ได้รับความนิยมมากกว่าและเปิดได้ง่ายกว่าในอุปกรณ์และแพลตฟอร์มส่วนใหญ่ ดังนั้น เมื่อคุณแปลง PowerPoint ของคุณเป็นวิดีโอ เนื้อหาของคุณจะเข้าถึงได้มากขึ้นและแชร์ได้ในหมู่ผู้ชมจำนวนมากขึ้น
แปลง PPT เป็นวิดีโอใน C ++
ในบทความนี้ เราตั้งใจที่จะแสดงวิธีแปลง PPT เป็นวิดีโอใน C++
รับ 2 API เพื่อแปลง PPT เป็นวิดีโอ
ขั้นแรก ในการแปลงงานนำเสนอ PowerPoint เป็นวิดีโอโดยทางโปรแกรม คุณต้องมี API ทั้งสองนี้:
- Aspose.Slides for C++. This API allows you to generate a set of frames based on the slides in your PowerPoint presentation. Aspose.Slides for C++ is a popular API for creating, editing, converting, and manipulating PowerPoint presentations (without Microsoft PowerPoint or Office). See this Installation article to install it.
- เอฟเอ็มเพก API นี้ช่วยให้คุณสร้างวิดีโอตามสไลด์ที่สร้างขึ้น ดาวน์โหลดได้ ที่นี่
ข้อมูล: คุณอาจต้องการตรวจสอบ Aspose ฟรี ตัวแปลง PowerPoint เป็นวิดีโอ เนื่องจากเป็นการใช้งานจริงของการดำเนินการ PowerPoint กับวิดีโอที่อธิบายไว้ ในบทความนี้. ตัวแปลงช่วยให้ผู้ใช้สร้างวิดีโอที่น่าทึ่งจากงานนำเสนอ
แปลง PPT เป็นวิดีโอใน C++
- เพิ่มเส้นทางไปยัง
ffmpeg.exe
ไปยังตัวแปรสภาพแวดล้อม ‘PATH’ - เรียกใช้โค้ด C++ ของ PowerPoint เป็นวิดีโอ
รหัส C ++ นี้แสดงวิธีแปลง PPT เป็นวิดีโอ:
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);
// เพิ่มรูปร่างรอยยิ้มแล้วทำให้เคลื่อนไหว
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 ดังนั้นคุณอาจต้องการใช้ลักษณะพิเศษในวิดีโอ Aspose.Slides ช่วยให้คุณทำสิ่งนั้นได้อย่างแม่นยำด้วยการจัดเตรียม reference.aspose.com/slides/cpp/class/aspose.slides.export.presentationplayer/) และคลาสและประเภทอื่นๆ ที่เกี่ยวข้อง
ตัวอย่างเช่น หากคุณตัดสินใจใช้ภาพเคลื่อนไหวและเอฟเฟ็กต์ในวิดีโอ คุณสามารถเพิ่มสไลด์และเปลี่ยนผ่านโค้ดสำหรับงานนำเสนอด้วยวิธีนี้:
// เพิ่มรูปร่างรอยยิ้มและทำให้เคลื่อนไหว
// ...
// เพิ่มสไลด์ใหม่และการเปลี่ยนภาพเคลื่อนไหว
System::SharedPtr<ISlide> newSlide = presentation->get_Slides()->AddEmptySlide(presentation->get_Slide(0)->get_LayoutSlide());
System::SharedPtr<IBackground> slideBackground = newSlide->get_Background();
slideBackground->set_Type(BackgroundType::OwnBackground);
auto fillFormat = slideBackground->get_FillFormat();
fillFormat->set_FillType(FillType::Solid);
fillFormat->get_SolidFillColor()->set_Color(System::Drawing::Color::get_Indigo());
newSlide->get_SlideShowTransition()->set_Type(TransitionType::Push);
จากนั้นคุณสามารถใช้การตั้งค่าภาพเคลื่อนไหวกับย่อหน้าบนวัตถุเพื่อทำให้วัตถุเหล่านั้นปรากฏขึ้นทีละรายการ (โดยตั้งค่าการหน่วงเวลาระหว่างการปรากฏเป็นวินาที):
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);
// เพิ่มข้อความและภาพเคลื่อนไหว
System::SharedPtr<IAutoShape> autoShape = slide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 210.0f, 120.0f, 300.0f, 300.0f);
System::SharedPtr<Paragraph> para1 = System::MakeObject<Paragraph>();
para1->get_Portions()->Add(System::MakeObject<Portion>(u"Aspose Slides for C++"));
System::SharedPtr<Paragraph> para2 = System::MakeObject<Paragraph>();
para2->get_Portions()->Add(System::MakeObject<Portion>(u"convert PowerPoint Presentation with text to video"));
System::SharedPtr<Paragraph> para3 = System::MakeObject<Paragraph>();
para3->get_Portions()->Add(System::MakeObject<Portion>(u"paragraph by paragraph"));
auto paragraphs = autoShape->get_TextFrame()->get_Paragraphs();
paragraphs->Add(para1);
paragraphs->Add(para2);
paragraphs->Add(para3);
paragraphs->Add(System::MakeObject<Paragraph>());
auto sequence = slide->get_Timeline()->get_MainSequence();
System::SharedPtr<IEffect> effect = sequence->AddEffect(para1, EffectType::Appear, EffectSubtype::None, EffectTriggerType::AfterPrevious);
System::SharedPtr<IEffect> effect2 = sequence->AddEffect(para2, EffectType::Appear, EffectSubtype::None, EffectTriggerType::AfterPrevious);
System::SharedPtr<IEffect> effect3 = sequence->AddEffect(para3, EffectType::Appear, EffectSubtype::None, EffectTriggerType::AfterPrevious);
System::SharedPtr<IEffect> effect4 = sequence->AddEffect(para3, EffectType::Appear, EffectSubtype::None, EffectTriggerType::AfterPrevious);
effect->get_Timing()->set_TriggerDelayTime(1.0f);
effect2->get_Timing()->set_TriggerDelayTime(1.0f);
effect3->get_Timing()->set_TriggerDelayTime(1.0f);
effect4->get_Timing()->set_TriggerDelayTime(1.0f);
// แปลงเฟรมเป็นวิดีโอ
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();
}
รับใบอนุญาตฟรี
หากต้องการลองใช้ฟีเจอร์ Aspose.Slides โดยไม่มีข้อจำกัด เราขอแนะนำให้คุณซื้อ ใบอนุญาตชั่วคราวฟรี
บทสรุป
หลังจากแนะนำคุณตลอดการดำเนินการในบทความนี้ เราเชื่อว่าตอนนี้คุณรู้วิธีแปลง PPT เป็นวิดีโอใน C++ แล้ว
หากต้องการเรียนรู้เพิ่มเติมเกี่ยวกับ Aspose.Slides คุณลักษณะ โปรดดูเอกสารประกอบ/). หากคุณมีคำถาม คุณสามารถโพสต์ได้ที่ฟอรัม