# Skill 031

> Integrate and manage audio files in PowerPoint presentations. This skill focuses on embedding and editing audio content within .pptx files.

- **Type:** Skill
- **Install:** `agentstack add skill-legendtkl-agentic-skill-router-skill-031`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [legendtkl](https://agentstack.voostack.com/s/legendtkl)
- **Installs:** 0
- **Category:** [AI & ML](https://agentstack.voostack.com/c/ai-and-ml)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [legendtkl](https://github.com/legendtkl)
- **Source:** https://github.com/legendtkl/agentic-skill-router/tree/main/experiments/dci-compare/skillrouter-skills/skill-031
- **Website:** https://legendtkl.github.io/agentic-skill-router/

## Install

```sh
agentstack add skill-legendtkl-agentic-skill-router-skill-031
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# PPTX Audio Integration

## Overview
Integrating audio into PowerPoint presentations can enhance the audience's experience. This skill provides a guide to embedding, playing, and editing audio files in .pptx presentations.

## Embedding Audio Files
To embed audio files into a PowerPoint slide, you can use the following method:

```python
from pptx import Presentation

# Load the presentation
prs = Presentation('path-to-file.pptx')

# Adding a new slide for audio
slide_layout = prs.slide_layouts[5]  # Blank layout
slide = prs.slides.add_slide(slide_layout)

# Specify the audio file
audio_path = 'path-to-audio.mp3'

# Embed audio
slide.shapes.add_media(audio_path, left=Inches(1), top=Inches(1), width=Inches(1), height=Inches(1))

# Save the presentation
prs.save('audio-integrated-presentation.pptx')
```

## Editing Audio Settings
Audio playback settings can be adjusted:
- Set the audio to play automatically or on click.
- Loop the audio for background presentations.

```python
for shape in slide.shapes:
    if shape.media_type == 'audio':
        shape.playback_options.auto_play = True
        shape.playback_options.loop = True
```

## Conclusion
Incorporating audio into your PowerPoint presentations can create a more engaging experience for your audience. By embedding and managing audio effectively, you can enhance the overall impact of your presentation.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [legendtkl](https://github.com/legendtkl)
- **Source:** [legendtkl/agentic-skill-router](https://github.com/legendtkl/agentic-skill-router)
- **License:** MIT
- **Homepage:** https://legendtkl.github.io/agentic-skill-router/

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-legendtkl-agentic-skill-router-skill-031
- Seller: https://agentstack.voostack.com/s/legendtkl
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
