├── LICENSE ├── README.md ├── example.png ├── logo.jpeg ├── main.py ├── requirements.txt └── src ├── capture ├── __pycache__ │ ├── display_capture.cpython-38.pyc │ ├── gif_capture.cpython-38.pyc │ ├── image_capture.cpython-38.pyc │ ├── loopablecamgear.cpython-38.pyc │ ├── text_animator.cpython-38.pyc │ ├── video_capture.cpython-38.pyc │ └── video_file_capture.cpython-38.pyc ├── display_capture.py ├── gif_capture.py ├── image_capture.py ├── loopablecamgear.py ├── text_animator.py ├── video_capture.py └── video_file_capture.py ├── gui ├── __pycache__ │ ├── device_selection.cpython-38.pyc │ ├── loading_screen.cpython-38.pyc │ └── main_gui.cpython-38.pyc ├── device_selection.py ├── loading_screen.py └── main_gui.py ├── managers ├── __pycache__ │ └── streamer_manager.cpython-38.pyc └── streamer_manager.py ├── streamers ├── __pycache__ │ ├── serialstreamer.cpython-38.pyc │ ├── udpstreamer.cpython-38.pyc │ └── wledstreamer.cpython-38.pyc ├── serialstreamer.py ├── udpstreamer.py └── wledstreamer.py └── utils ├── __pycache__ └── logger_handler.cpython-38.pyc └── logger_handler.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/README.md -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/example.png -------------------------------------------------------------------------------- /logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/logo.jpeg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/capture/__pycache__/display_capture.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/__pycache__/display_capture.cpython-38.pyc -------------------------------------------------------------------------------- /src/capture/__pycache__/gif_capture.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/__pycache__/gif_capture.cpython-38.pyc -------------------------------------------------------------------------------- /src/capture/__pycache__/image_capture.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/__pycache__/image_capture.cpython-38.pyc -------------------------------------------------------------------------------- /src/capture/__pycache__/loopablecamgear.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/__pycache__/loopablecamgear.cpython-38.pyc -------------------------------------------------------------------------------- /src/capture/__pycache__/text_animator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/__pycache__/text_animator.cpython-38.pyc -------------------------------------------------------------------------------- /src/capture/__pycache__/video_capture.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/__pycache__/video_capture.cpython-38.pyc -------------------------------------------------------------------------------- /src/capture/__pycache__/video_file_capture.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/__pycache__/video_file_capture.cpython-38.pyc -------------------------------------------------------------------------------- /src/capture/display_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/display_capture.py -------------------------------------------------------------------------------- /src/capture/gif_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/gif_capture.py -------------------------------------------------------------------------------- /src/capture/image_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/image_capture.py -------------------------------------------------------------------------------- /src/capture/loopablecamgear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/loopablecamgear.py -------------------------------------------------------------------------------- /src/capture/text_animator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/text_animator.py -------------------------------------------------------------------------------- /src/capture/video_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/video_capture.py -------------------------------------------------------------------------------- /src/capture/video_file_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/capture/video_file_capture.py -------------------------------------------------------------------------------- /src/gui/__pycache__/device_selection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/gui/__pycache__/device_selection.cpython-38.pyc -------------------------------------------------------------------------------- /src/gui/__pycache__/loading_screen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/gui/__pycache__/loading_screen.cpython-38.pyc -------------------------------------------------------------------------------- /src/gui/__pycache__/main_gui.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/gui/__pycache__/main_gui.cpython-38.pyc -------------------------------------------------------------------------------- /src/gui/device_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/gui/device_selection.py -------------------------------------------------------------------------------- /src/gui/loading_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/gui/loading_screen.py -------------------------------------------------------------------------------- /src/gui/main_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/gui/main_gui.py -------------------------------------------------------------------------------- /src/managers/__pycache__/streamer_manager.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/managers/__pycache__/streamer_manager.cpython-38.pyc -------------------------------------------------------------------------------- /src/managers/streamer_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/managers/streamer_manager.py -------------------------------------------------------------------------------- /src/streamers/__pycache__/serialstreamer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/streamers/__pycache__/serialstreamer.cpython-38.pyc -------------------------------------------------------------------------------- /src/streamers/__pycache__/udpstreamer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/streamers/__pycache__/udpstreamer.cpython-38.pyc -------------------------------------------------------------------------------- /src/streamers/__pycache__/wledstreamer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/streamers/__pycache__/wledstreamer.cpython-38.pyc -------------------------------------------------------------------------------- /src/streamers/serialstreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/streamers/serialstreamer.py -------------------------------------------------------------------------------- /src/streamers/udpstreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/streamers/udpstreamer.py -------------------------------------------------------------------------------- /src/streamers/wledstreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/streamers/wledstreamer.py -------------------------------------------------------------------------------- /src/utils/__pycache__/logger_handler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/utils/__pycache__/logger_handler.cpython-38.pyc -------------------------------------------------------------------------------- /src/utils/logger_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradyMeighan/WLED-Studio/HEAD/src/utils/logger_handler.py --------------------------------------------------------------------------------