Skip to main content

Mirror and control your Android phone from your Linux desktop over WiFi

Project description

RemotePhone

Mirror and control your Android phone from your Linux desktop — no USB debugging required.

RemotePhone is a two-part system: an Android app that captures and streams your phone's screen, and a Linux desktop client that displays the stream and lets you control the phone with your mouse and keyboard.

Unlike scrcpy (which requires ADB/USB debugging), RemotePhone works entirely over WiFi using standard Android APIs.


Features

  • Native resolution screen mirroring over WiFi
  • Full remote control — tap, swipe, long press, scroll, system keys
  • Audio mirroring with automatic phone speaker muting (Android 10+)
  • No USB debugging — no ADB, no developer mode needed
  • Keyboard input — type text directly into phone text fields, including PIN pad support
  • Low latency — H.264 hardware encoding, CBR mode, direct frame routing, smart frame dropping
  • Auto-discovery — scans local network and auto-connects to the phone
  • Auto-reconnect — reconnects automatically on connection loss with exponential backoff
  • Wake on input — wakes the phone screen when you interact from the desktop
  • Dark theme — sleek UI on both phone and desktop

Architecture

┌─────────────────────┐         WebSocket (WiFi)         ┌──────────────────────┐
│    Android Phone     │ <------------------------------> │   Linux Desktop      │
│                      │                                  │                      │
│  MediaProjection --> │  H.264 video frames ---------->  │  PyAV decoder        │
│  MediaCodec H.264    │  Raw PCM audio --------------->  │  sounddevice player  │
│  AudioPlaybackCapt.  │  <-- Touch/key JSON commands --  │  PyQt6 display       │
│  AccessibilityServ.  │                                  │  Mouse/keyboard      │
└─────────────────────┘                                  └──────────────────────┘

Setup

1. Android App

Requirements: Android 7.0+ (API 24). Audio mirroring requires Android 10+.

Option A — Install pre-built APK:

  1. Download the latest APK from Releases and install it
  2. Android 13+ only: Go to Settings -> Apps -> RemotePhone -> ⋮ menu -> "Allow restricted settings" (required for sideloaded apps to use accessibility)
  3. Open the app and tap "Open Accessibility Settings" -> find RemotePhone -> Enable it

Option B — Build from source:

  1. Open the android/ folder in Android Studio
  2. Let Gradle sync and download dependencies
  3. Connect your phone (or use wireless install) and click Run
  4. Enable the accessibility service as above

2. Linux Client

Requirements: Python 3.10+, FFmpeg libraries.

Option A — Install via pip (recommended):

# Install system dependencies (Ubuntu/Debian)
sudo apt install ffmpeg libportaudio2

# Install RemotePhone
pip install remote-phone

# Run it
remotephone

Option B — Run from source:

# Install system dependencies (Ubuntu/Debian)
sudo apt install python3 python3-venv python3-pip libportaudio2 ffmpeg

# Run the client
cd remotephone
chmod +x run.sh
./run.sh

The launcher script automatically creates a virtual environment and installs Python dependencies.


Usage

  1. On your phone: Open RemotePhone -> tap "Start Mirroring" -> grant the screen capture permission
  2. On your laptop: Run the Linux client — it auto-scans the network and connects if one phone is found
  3. If auto-connect doesn't work, enter the phone's IP (shown in the app) and click Connect

Controls

Input Action
Left click Tap
Click + drag Swipe
Hold click (> 0.5s) Long press
Scroll wheel Scroll
Horizontal scroll (2-finger trackpad) Back gesture
Right click Back
Middle click Back
Escape Back
Home key Home
F2 Recent apps
F5 Notifications
F6 Quick Settings
F10 Lock screen
F11 Fullscreen toggle
Any typing Text input into focused field
Backspace Delete character (or Back if no text field)
Delete Delete forward
Ctrl+A / C / X / V Select all / Copy / Cut / Paste
Enter Confirm / IME action / PIN submit

Keyboard and Text Input

When you tap a text field on the phone, you can type directly from your desktop keyboard. The text is inserted at the cursor position with full cursor-aware editing.

PIN/Password fields are handled specially — keyboard digits click the on-screen PIN pad buttons via the accessibility tree, and Enter searches for the confirm/OK button.

Audio

Toggle the Audio checkbox in the Linux client to stream phone audio to your laptop. When enabled, the phone speakers are automatically muted so audio only plays on the desktop. Volume is restored when audio streaming is disabled or mirroring stops.

Requires Android 10+ and libportaudio2 on Linux.


Protocol

Communication uses WebSocket on port 8765.

  • Video: H.264 NAL units with a 9-byte binary header (frame type, timestamp, size)
  • Audio: Raw PCM (16-bit LE, 44100 Hz, stereo) with the same binary header
  • Control: JSON text messages for tap, swipe, scroll, key actions, text input

Encoding Settings

Setting Value
Codec H.264 (AVC) hardware-accelerated
Profile Main
Bitrate Adaptive (8 bits/pixel, 4-40 Mbps)
Frame rate 30 FPS
Bitrate mode CBR
Keyframe interval 1 second
Low latency Enabled (Android 11+)

Known Limitations

  • Lock screen displays as black — this is an Android OS security restriction on MediaProjection. You can still type your PIN from the keyboard (digits click the PIN pad buttons).
  • Secure screens (banking apps, DRM content) also display as black for the same reason.
  • Both devices must be on the same WiFi network.
  • Some device manufacturers may restrict the AccessibilityService or MediaProjection behavior.
  • Text input uses ACTION_SET_TEXT which may not work in all apps (games, custom views).

Project Structure

remote_phone/
├── android/                    # Android app (Kotlin)
│   ├── app/src/main/java/com/remotephone/
│   │   ├── MainActivity.kt              # UI + permission flow
│   │   ├── ScreenCaptureService.kt       # MediaProjection + H.264 encoding
│   │   ├── RemoteAccessibilityService.kt # Gesture dispatch + text input
│   │   └── MirrorWebSocketServer.kt      # WebSocket server + backpressure
│   └── app/src/main/res/                 # Layouts, drawables, configs
│
├── remotephone/                # Python desktop client (pip install remote-phone)
│   ├── main.py                 # Entry point
│   ├── ui/main_window.py       # PyQt6 window + video display
│   ├── network/ws_client.py    # WebSocket client + auto-reconnect
│   ├── network/scanner.py      # Network auto-discovery
│   ├── decoder/video_decoder.py # H.264 decoding (PyAV/FFmpeg)
│   ├── decoder/audio_player.py  # PCM audio playback
│   ├── input/input_handler.py   # Mouse/keyboard + gesture detection
│   ├── requirements.txt
│   └── run.sh                  # Auto-setup launcher (for running from source)
│
├── pyproject.toml              # Python package config
├── .github/workflows/          # CI/CD (APK build + PyPI publish)
└── README.md

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

remote_phone-1.0.1.tar.gz (19.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

remote_phone-1.0.1-py3-none-any.whl (23.2 kB view details)

Uploaded Python 3

File details

Details for the file remote_phone-1.0.1.tar.gz.

File metadata

  • Download URL: remote_phone-1.0.1.tar.gz
  • Upload date:
  • Size: 19.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for remote_phone-1.0.1.tar.gz
Algorithm Hash digest
SHA256 6d0157d2c87b5d5221ddd4697add671a4218748afc9f7e0a252a743c71dd48f1
MD5 92e5f994e7f4943c5ff19e72656fb08e
BLAKE2b-256 e4e842ec144ce058772d64307757f5bf52352c401fd0e09d38539852f56ae0b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for remote_phone-1.0.1.tar.gz:

Publisher: pypi.yml on dpk404/remote-phone

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file remote_phone-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: remote_phone-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 23.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for remote_phone-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b1545aa3ea6156e874b83cf19767609c329fc87b0043252942cc0fc9862acea4
MD5 65422fe8dd438a2066f4f57e7913ccf7
BLAKE2b-256 10708b442f9d8413d7a1f126160f1935a46af9a6aa4742d7034b2cb557fffe1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for remote_phone-1.0.1-py3-none-any.whl:

Publisher: pypi.yml on dpk404/remote-phone

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page