├── .github └── workflows │ └── create_release_with_assets.yaml ├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── src ├── __init__.py ├── displaycapture.py ├── loopablecamgear.py ├── serialstreamer.py ├── udpstreamer.py ├── utils.py └── wledstreamer.py ├── wledvideo.py └── wledvideo.spec /.github/workflows/create_release_with_assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/.github/workflows/create_release_with_assets.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/displaycapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/src/displaycapture.py -------------------------------------------------------------------------------- /src/loopablecamgear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/src/loopablecamgear.py -------------------------------------------------------------------------------- /src/serialstreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/src/serialstreamer.py -------------------------------------------------------------------------------- /src/udpstreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/src/udpstreamer.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/wledstreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/src/wledstreamer.py -------------------------------------------------------------------------------- /wledvideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/wledvideo.py -------------------------------------------------------------------------------- /wledvideo.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fieldOfView/WLED-video/HEAD/wledvideo.spec --------------------------------------------------------------------------------