Skip to content
/ ssm Public

Simple Screen Mirror 💻✨✨✨🖥️

License

Notifications You must be signed in to change notification settings

JHLeeeMe/ssm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ssm

Simple Screen Mirror 💻✨✨✨🖥️
screen-mirroring-icon ssm

How to run

1. Install ssm package

  • pip install ssm-python

2. Create server.py & client.py

server:
    from ssm import ScreenMirrorServer


    # ssm_server = ScreenMirrorServer(['<client-ip>', port=7890])
    ssm_server = ScreenMirrorServer()  # default: all ip & 7890 port

    ssm_server.start()



client:
    from ssm import ScreenMirrorClient


    ssm_client = ScreenMirrorClient('<server-ip>'[, 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