> ## 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.

# Browser video capture

> Playwright के साथ किसी website के walkthrough videos और step PNGs record करें।

एक browser walkthrough को WebM plus वैकल्पिक step PNGs के रूप में record करें:

```bash theme={null}
arka capture video https://example.com
arka capture video https://example.com --output demo-captures
arka capture video --walkthrough
arka capture video --help
python3 recordings/page-walkthrough/walkthrough.py
```

`--walkthrough` Arka web dashboard preset (Chat → Skills → Status) का उपयोग करता है।
Default dev URL (`http://127.0.0.1:5173`) override करने के लिए `ARKA_WALKTHROUGH_URL` set करें।

Custom step lists JSON से load होती हैं:

```bash theme={null}
arka capture video https://example.com --actions steps.json
```

प्रत्येक step एक `type` field वाला object होता है: `goto`, `click`, `wait`, `press`, या
`screenshot`। केवल PNG captures के लिए `--no-video` या केवल video output के लिए `--no-screenshots` का उपयोग करें।

एक बार browser runtime install करें:

```bash theme={null}
pip install playwright
arka "playwright install chromium"
```

Natural-language routing भी काम करती है:

```bash theme={null}
arka route "record a walkthrough video of https://example.com"
arka route "capture walkthrough of the arka web dashboard"
```

**Note:** Arka MCP browser skills अभी भी केवल PNGs return करते हैं। जब आपको MP4/WebM artifacts चाहिए तो CLI या
`recordings/page-walkthrough/walkthrough.py` का उपयोग करें।


## Related topics

- [Arka CLI command और flag reference](/hi/guides/cli.md)
- [वेब डैशबोर्ड](/hi/guides/web-dashboard.md)
- [Music generate करें](/hi/guides/generate-music.md)
- [Browser validation](/hi/guides/browser-check.md)
- [Image description, OCR, और screen capture](/hi/guides/vision.md)
