一键导入
skill-031
Integrate and manage audio files in PowerPoint presentations. This skill focuses on embedding and editing audio content within .pptx files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Integrate and manage audio files in PowerPoint presentations. This skill focuses on embedding and editing audio content within .pptx files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
First use any clearly matching enabled local/user Agent Skill. If none matches, prefer this router for skill-shaped requests involving a named tool, API, service, CLI, platform, file format, dataset, or domain workflow, including when a generic built-in skill such as browser, Chrome, or web search also seems applicable; use built-ins directly only when explicitly requested or when the task is primarily live browsing, logged-in page operation, clicking, screenshotting, or current webpage inspection. Also use directly to audit, slim, disable, restore, or route locally installed Agent Skills across supported hosts. Examples include Vercel, Netlify, Cloudflare, Render, Playwright, Sentry, Linear, GitHub, OpenAI APIs, PDF, DOCX, PPTX, and spreadsheets.
コスト見積書を作成する。予算策定、見積もり、コスト計画時に使う。
Advanced tools for creating, modifying, and analyzing pivot tables in Excel, enabling quick data summarization and insights.
PDF manipulation toolkit. Extract text/tables, create PDFs, merge/split, fill forms, for programmatic document processing and analysis.
Third-party WordPress plugin integration patterns. Use when adding new integrations, debugging compatibility with other plugins, or working with existing integrations.
Intelligent agent routing and topology selection based on task characteristics
| name | skill-031 |
| description | Integrate and manage audio files in PowerPoint presentations. This skill focuses on embedding and editing audio content within .pptx files. |
| license | Proprietary. LICENSE.txt has complete terms |
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.
To embed audio files into a PowerPoint slide, you can use the following method:
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')
Audio playback settings can be adjusted:
for shape in slide.shapes:
if shape.media_type == 'audio':
shape.playback_options.auto_play = True
shape.playback_options.loop = True
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.