vault backup: 2025-02-10 17:27:57

This commit is contained in:
2025-02-10 17:27:57 +08:00
parent 60a1c02c6a
commit 5752038f86
159 changed files with 1 additions and 1 deletions

17
20.01. Android/Tools.md Normal file
View File

@@ -0,0 +1,17 @@
# screenrecord
## 螢幕錄影
`screenrecord `可以把目前的螢幕錄製下來,一個簡單的例子:
```
adb shell screenrecord --size 1200x1920 /storage/sdcard0/demo.mp4
```
### 指定錄製時間
```
adb shell screenrecord --time-limit 10 /storage/sdcard0/demo.mp4
```
### 指定bit rate
```
adb shell screenrecord --bit-rate 6000000 /storage/sdcard0/demo.mp4
```
沒有指定時間的話,就必須手動`Ctrl+c`來中止錄影。