Skip to content

Instantly share code, notes, and snippets.

@c0d3x27
Created February 2, 2021 16:59
Show Gist options
  • Save c0d3x27/e09b504c8d1f90320f0b698a2970acee to your computer and use it in GitHub Desktop.
Save c0d3x27/e09b504c8d1f90320f0b698a2970acee to your computer and use it in GitHub Desktop.
screen sharing app
from vidstream import StreamingServer
import threading
receiver = StreamingServer('privateipadress', 'port')
t = threading.Thread(target=receiver.start_server)
t.start()
while input("") != 'q':
continue
receiver.stop_server()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment