https://github.com/jhleeeme/ssm
Simple Screen Mirror 💻✨✨✨🖥️
https://github.com/jhleeeme/ssm
opencv python3 screen-mirroring screen-sharing socket
Last synced: 9 months ago
JSON representation
Simple Screen Mirror 💻✨✨✨🖥️
- Host: GitHub
- URL: https://github.com/jhleeeme/ssm
- Owner: JHLeeeMe
- License: mit
- Created: 2021-02-04T03:04:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-14T10:34:32.000Z (over 3 years ago)
- Last Synced: 2024-04-25T17:21:45.020Z (about 2 years ago)
- Topics: opencv, python3, screen-mirroring, screen-sharing, socket
- Language: Python
- Homepage:
- Size: 53.7 KB
- Stars: 13
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ssm
Simple Screen Mirror 💻✨✨✨🖥️


## How to run
### 1. Install ssm package
- ```pip install ssm-python```
### 2. Create server.py & client.py
- sample codes [here](https://github.com/JHLeeeMe/ssm/tree/master/samples)
```python
server:
from ssm import ScreenMirrorServer
# ssm_server = ScreenMirrorServer(['', port=7890])
ssm_server = ScreenMirrorServer() # default: all ip & 7890 port
ssm_server.start()
client:
from ssm import ScreenMirrorClient
ssm_client = ScreenMirrorClient(''[, port=7890, quality=90, cursor=True])
ssm_client.start()
```
### 3. Run
1. ***server:*** ```python server.py```
2. ***client:*** ```python client.py```
### 4. Stop
- ***server:*** ```press ESC```
- ***client:*** ```kill process```