---
name: Merge4Ppt
slug: merge4ppt
category: Automation
description: Merge4Ppt combines multiple PowerPoint files into one PPTX. Use it when you need to merge slides or consolidate several presentations into a single deck.
github: "https://github.com/CoderWanFeng/python-office/tree/develop/skills/ppt/merge4ppt"
language: Python
stars: 1339
forks: 301
install: "npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/ppt/merge4ppt ~/.claude/skills/merge4ppt"
installs_to: ~/.claude/skills/merge4ppt
source_path: skills/ppt/merge4ppt/SKILL.md
collection_size: 50
category_size: 1523
collection_url: "https://dirskills.com/collections/CoderWanFeng/python-office"
added: 2026-08-12T04:43:09.718Z
last_synced: 2026-08-12T04:43:09.718Z
canonical_url: "https://dirskills.com/skills/merge4ppt"
---

# Merge4Ppt

Merge4Ppt combines multiple PowerPoint files into one PPTX. Use it when you need to merge slides or consolidate several presentations into a single deck.

**Install:**

```bash
npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/ppt/merge4ppt ~/.claude/skills/merge4ppt
```

## README

# merge4ppt Skill

> 合并多个 PPT 文件

## 功能描述

将多个 PPT 文件合并为一个 PPT 文件。

## 所属分类

`office/skills/ppt/merge4ppt/`

## 调用方式

```python
from skills.ppt import merge4ppt

merge4ppt(
    input_path='./ppt_files',
    output_path='./',
    output_name='merged.pptx'
)
```

## 参数说明

| 参数 | 类型 | 必填 | 默认值 | 说明 |
|------|------|------|--------|------|
| `input_path` | str | 是 | - | 输入 PPT 文件路径 |
| `output_path` | str | 否 | `'./'` | 输出 PPT 文件路径 |
| `output_name` | str | 否 | `'merge4ppt.pptx'` | 合并后的 PPT 文件名 |

## 返回值

`None`

## 使用示例

```python
from skills.ppt import merge4ppt
merge4ppt(input_path='./ppt_files', output_name='all_merged.pptx')
```

## 原始函数

`office.api.ppt.merge4ppt`
