this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add screenshot command documentation to README

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

onevcat 750da99c 485b7ea5

+19 -1
+19 -1
README.md
··· 25 25 - [**Hardware Buttons**](#hardware-buttons-1) 26 26 - [**Keyboard Control**](#keyboard-control) 27 27 - [**Video Streaming**](#video-streaming) 28 + - [**Screenshot**](#screenshot) 28 29 - [**Accessibility \& Info**](#accessibility--info) 29 30 - [Architecture](#architecture) 30 31 - [Why AXe?](#why-axe) ··· 62 63 - **Sequence Timing**: Custom delays between key sequences 63 64 - **Complex Automation**: Multi-step workflows with precise timing 64 65 65 - ### Video Streaming 66 + ### Video & Screenshots 67 + - **Screenshot Capture**: Capture simulator display as PNG with automatic or custom filenames 66 68 - **Screenshot-based Streaming**: Capture simulator video at 1-30 FPS 67 69 - **Multiple Output Formats**: MJPEG, raw JPEG, ffmpeg-compatible, BGRA 68 70 - **H.264 Recording**: Use the `record-video` command to write MP4 files with hardware-friendly encoding ··· 246 248 247 249 > [!TIP] 248 250 > Press `Ctrl+C` to stop recording. AXe finalises the MP4 before exiting and prints the file path to stdout. 251 + 252 + ### **Screenshot** 253 + 254 + ```bash 255 + # Capture screenshot with auto-generated filename 256 + axe screenshot --udid SIMULATOR_UDID 257 + 258 + # Save to specific file 259 + axe screenshot --output ~/Desktop/my-screenshot.png --udid SIMULATOR_UDID 260 + 261 + # Save to directory (auto-generates timestamped filename) 262 + axe screenshot --output ~/Desktop/ --udid SIMULATOR_UDID 263 + ``` 264 + 265 + > [!TIP] 266 + > The screenshot path is printed to stdout for easy scripting. Progress messages go to stderr. 249 267 250 268 ### **Accessibility & Info** 251 269