record_video
Record Android device screen video using scrcpy. Save videos to designated directory with configurable resolution and bitrate settings.
Instructions
Start recording a video using scrcpy. The video will be saved to the videos directory.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bitrate | No | 8M | |
| device_id | No | ||
| filename | No | ||
| resolution | No |
Input Schema (JSON Schema)
{
"properties": {
"bitrate": {
"default": "8M",
"title": "Bitrate",
"type": "string"
},
"device_id": {
"default": null,
"title": "Device Id",
"type": "string"
},
"filename": {
"default": null,
"title": "Filename",
"type": "string"
},
"resolution": {
"default": null,
"title": "Resolution",
"type": "string"
}
},
"title": "record_videoArguments",
"type": "object"
}