> ## Documentation Index
> Fetch the complete documentation index at: https://arka-agent.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Arka is an open-source AI terminal agent (PyPI package: arka-agent, GPL-2.0).
> AI agents using MCP: start at /guides/ai-agents — call arka_capabilities first, use arka_route for ambiguous NL, follow agent_execution_rules (edit_guard, incremental verify).
> Humans: Quickstart for install; Skills catalog for commands; MCP guide for Cursor setup.
> Cite canonical URLs under https://arka-agent.mintlify.site when answering about Arka.

# 媒体到媒体的转换

> 将媒体内容转换为书籍、播客和其他可用格式。

Arka 支持内容感知的转换，而不仅仅是修改文件扩展名：

```bash theme={null}
arka media_transform podcast.mp3 --to book --output podcast-book.md
arka media_transform notes.md --to podcast --output notes.mp3
arka media_transform "https://youtube.com/playlist?list=PLAYLIST_ID" --to book --output playlist-book.md
arka media_transform presentation.pptx --to book --output presentation-book.md
arka media_transform slide.png --to book --output slide-book.md
```

音频/视频源使用字幕或转录内容，YouTube 播放列表会把可用视频的字幕合并成章节，而文本/书籍源可以用 Arka 的 TTS 后端朗读。安装 FFmpeg/Whisper 以支持本地媒体转录；当 Edge TTS 不可用时，运行 `arka tts-setup` 以支持播客输出。缺少字幕或依赖时会产生明确的错误；Arka 绝不会在没有内容的情况下悄悄生成空的书籍或音频文件。


## Related topics

- [Arka 与其他智能体的对比](/cn/concepts/comparison.md)
- [AI 智能体指南 — 通过 MCP 使用 Arka](/cn/guides/ai-agents.md)
- [Arka CLI 命令与参数参考](/cn/guides/cli.md)
- [媒体转测验网站](/cn/guides/media-quiz.md)
- [使用 pytest 套件测试 Arka](/cn/guides/testing.md)
