I am writing a python script to process an image. I need to take automated screenshots. How can i do that with some kind of command ? No root acces. I am using termux and terminal emulator.
Asked
Active
Viewed 3,096 times
0
-
I did try imagemagick but it gives error – mustafa candan Oct 11 '18 at 09:55
1 Answers
2
You would need elevated privileges, at least of user 2000 (shell) or higher. Since the Android is not rooted, your best bet is to get adb running in wireless mode in your device. You would also have to load a compatible adb binary for your Android to connect to localhost via adb.
Once this have been achieved, run
adb shell screencap /sdcard/FILE_NAME.png

Firelord
- 25,084
- 20
- 124
- 286
-
Is this exclusively from adb? I tried from the actual phone (on 2 different devices) with a terminal app with
$ screencap test.png
and it generates a 0 byte file. The folder is writable, for exampleecho hello > test.txt
does create a 6 byte file – golimar May 18 '22 at 08:10 -
1Yes. You need adb. User installed (unprivileged) apps cannot capture screen without using dedicated API. – Firelord May 18 '22 at 10:08