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 667464fb a31c6953

+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 ··· 252 254 253 255 > [!TIP] 254 256 > Press `Ctrl+C` to stop recording. AXe finalises the MP4 before exiting and prints the file path to stdout. 257 + 258 + ### **Screenshot** 259 + 260 + ```bash 261 + # Capture screenshot with auto-generated filename 262 + axe screenshot --udid SIMULATOR_UDID 263 + 264 + # Save to specific file 265 + axe screenshot --output ~/Desktop/my-screenshot.png --udid SIMULATOR_UDID 266 + 267 + # Save to directory (auto-generates timestamped filename) 268 + axe screenshot --output ~/Desktop/ --udid SIMULATOR_UDID 269 + ``` 270 + 271 + > [!TIP] 272 + > The screenshot path is printed to stdout for easy scripting. Progress messages go to stderr. 255 273 256 274 ### **Accessibility & Info** 257 275