Making a Toggle for Screen Recording in Android 4.4
Last night I made a blog post on how to screen record. This morning, I decided to make toggles with Tasker so that I could do it all from my phone easily, without a computer.
Install Tasker.
Install BusyBox.
Copy this file to /sdcard/ with ADB;
./adb push screen.sh /sdcard/screen.sh
Next you can use
./adb shell
to get into your phone’s terminal.Type
su
, a super user prompt should appear on your phone, grant permissions.Type
cd /sdcard/
followed bymkdir screens
and thenchmod 777 screen.sh
(not that I used 777 because it’s on my phone and no one else has access, it’s not normally a good idea).Now open up Tasker, go to the Tasks tab, hit the + button at the bottom right, create a ‘Start’ task. Tap the ‘Start’ task, then hit the + down the bottom, then Script and then Run Shell.
Toggle ‘Use Root’ and set this command:
sh /sdcard/screen.sh
Now create another task with the same parameters, with the name ‘End’.
Set this shell command:
kill -2 $(pidof screenrecord)
Now you can go to your homescreen, create a new Tasker wiget, select Start and End. (Note: you’ll have to set an application icon for each of the tasks, this can be done by editing the task and tapping the button on the bottom right).
Your screen recordings will be saved under /sdcard/screens with the filename screen_TIMESTAMP.mp4 (where timestamp is a simple
date +%s
command). You can now upload them over USB or via something like Dropbox.
I took the liberty of uploading an example video.
On the web
Roadkill
Sun Mar 30 2025 by Kev QuirkWeek Notes W12
Wed Mar 26 2025 by Joel's Log FilesInstalling NPM Packages Very Quickly
Tue Mar 25 2025 by Andrew Healey's BlogDoing in-place, single-node Postgres upgrades with almost no downtime
Sun Mar 2 2025 by Stan's blogIntroducing laravel-tfa-confirmation
Sun Feb 2 2025 by stefanzweifel.dev
Generated by openring