/ScreenCapture

A simple Python application for sharing screen over local network

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Screen Capture ๐Ÿ–ฅ๏ธ ๐Ÿ“ธ

ScreenCapture is a simple Python application that allows you to share your screen in local network over HTTP. It provides a convenient way to share your screen in real-time.

Features โœจ

  • Live Screen Streaming: Capture screenshots continuously and stream them to a web page in real-time.
  • Multi-threaded: Utilizes multi-threading to handle multiple client connections simultaneously.
  • JPEG Format: Screenshots are encoded in JPEG format for efficient transmission over the network.
  • Customizable: Easily customize the server settings such as host, port, and streaming intervals according to your requirements.

Usage ๐Ÿš€

Windows:

  1. Install Python 3: Download and Install Python 3 From www.python.org

  2. Clone the repository:

git clone https://github.com/MaxEdison/ScreenCapture
  1. Install the required dependencies: Simply Run "windows-install.bat" to install all dependencies OR use this command:
pip install -r requirements.txt
  1. Run the server: Simply Run "windows-run.bat" OR use this command:
python main.py

Now clients can stream your screen by entering your machine IP address on port 8000 (default port)

You can find your IP address in local network by this command:

ipconfig

Linux/MacOS:

  1. Clone the repository:
git clone https://github.com/MaxEdison/ScreenCapture
  1. Install the required dependencies:
pip install -r requirements.txt
  1. Run the server:
python main.py

Now clients can stream your screen by entering your machine IP address on port 8000 (default port)

You can find your IP address in local network by this command:

ifconfig

Dependency ๐Ÿ“ฆ

PyAutoGUI: Python library for automating keyboard and mouse actions.
TKinter: The tkinter package (โ€œTk interfaceโ€) is the standard Python interface to the Tcl/Tk GUI toolkit.

Contributing ๐Ÿค

Contributions are always welcome!

If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request.

License ๐Ÿ“„

GNU General Public License v3.0

Acknowledgement ๐Ÿ™

This project was inspired by ScreenTask.

(ScreenTask is only available on Windows).