rem wait devices
adb wait-for-device
rem start camera
adb shell am start -a android.media.action.STILL_IMAGE_CAMERA
set n=0
pause
:capture
rem cap to video
adb shell input swipe 550 1780 330 1780 300
echo capture n is %n%
if %n%==100000000000 exit
set /a n=%n%+1
ping -n 3 127.0>nul
goto :video
rem video to cap
:video
adb shell input swipe 550 1780 750 1780 300
echo n is %n%
if %n%==100000000000 exit
set /a n=%n%+1
ping -n 3 127.0>nul
goto :capture
从左向右滑动屏幕
$ adb shell input swipe 360 640 400 640
模拟长按
$ adb shell input swipe 360 640 361 641 2000
循环拍照退出
adb wait-for-device
adb root && adb remount
adb shell am start -a android.media.action.STILL_IMAGE_CAMERA
set n=0
:caputer
adb shell input keyevent 27
set /a n=%n%+1
ping -n 1 127.0>nul
echo n is %n%
if %n% == 10 (
goto backhome
) else (
goto caputer)
:backhome
adb shell input keyevent 3
adb shell am start -a android.media.action.STILL_IMAGE_CAMERA
set n=0
ping -n 2 127.0>nul
goto caputer
本文介绍了一种使用ADB命令自动化控制手机摄像头的方法,包括等待设备、启动相机应用、模拟触摸屏滑动、拍照及退出循环等操作,适用于自动化测试或批量图片拍摄场景。
9515

被折叠的 条评论
为什么被折叠?



