A simple GUI for Scrcpy, a tool for displaying and controlling Android devices connected via USB or TCP/IP.
This GUI is specifically designed for Meta Quest devices.
- Simple GUI of scrcpy
- Mirror multiple devices simultaneously
- Adjust screen size for Quest devices
- Toggle proximity sensor
- Python 3
flet
Library is required.
- Only works with Windows
- Download latest zip file from release page
- Unpack downloaded zip file
- Launch screen-caster-quest.exe
- You will need
pyinstaller
to build a binary file (.exe) - Run following in the project directory:
pyinstaller main.py --onefile -w --icon=icon.ico --add-data "icon.ico;icon.ico" --add-data "scrcpy:scrcpy" --name screen-caster-quest --noconsole
You can set the default bitrate & size of mirroring window in the config.ini
file.
[scrcpy]
bitrate = 20
size = 1024
This tool is based on scrcpy by Genymobile, and some features are built by willykc. Thank you for those great works.