├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── cmake └── Modules │ └── FindNDI.cmake ├── examples ├── img │ ├── test-trans.png │ └── test.png ├── receive.py ├── receive_handler.py └── send.py ├── libs └── include │ ├── Processing.NDI.DynamicLoad.h │ ├── Processing.NDI.Find.h │ ├── Processing.NDI.FrameSync.h │ ├── Processing.NDI.Lib.cplusplus.h │ ├── Processing.NDI.Lib.h │ ├── Processing.NDI.Recv.ex.h │ ├── Processing.NDI.Recv.h │ ├── Processing.NDI.Routing.h │ ├── Processing.NDI.Send.h │ ├── Processing.NDI.compat.h │ ├── Processing.NDI.deprecated.h │ ├── Processing.NDI.structs.h │ └── Processing.NDI.utilities.h ├── pyproject.toml ├── pysimplendi └── __init__.py ├── requirements.txt ├── setup.py └── src ├── Converter.h ├── NDIReceiver.cpp ├── NDIReceiver.h ├── NDISender.cpp ├── NDISender.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Modules/FindNDI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/cmake/Modules/FindNDI.cmake -------------------------------------------------------------------------------- /examples/img/test-trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/examples/img/test-trans.png -------------------------------------------------------------------------------- /examples/img/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/examples/img/test.png -------------------------------------------------------------------------------- /examples/receive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/examples/receive.py -------------------------------------------------------------------------------- /examples/receive_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/examples/receive_handler.py -------------------------------------------------------------------------------- /examples/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/examples/send.py -------------------------------------------------------------------------------- /libs/include/Processing.NDI.DynamicLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.DynamicLoad.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.Find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.Find.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.FrameSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.FrameSync.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.Lib.cplusplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.Lib.cplusplus.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.Lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.Lib.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.Recv.ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.Recv.ex.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.Recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.Recv.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.Routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.Routing.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.Send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.Send.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.compat.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.deprecated.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.structs.h -------------------------------------------------------------------------------- /libs/include/Processing.NDI.utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/libs/include/Processing.NDI.utilities.h -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pysimplendi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/pysimplendi/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/setup.py -------------------------------------------------------------------------------- /src/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/src/Converter.h -------------------------------------------------------------------------------- /src/NDIReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/src/NDIReceiver.cpp -------------------------------------------------------------------------------- /src/NDIReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/src/NDIReceiver.h -------------------------------------------------------------------------------- /src/NDISender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/src/NDISender.cpp -------------------------------------------------------------------------------- /src/NDISender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/src/NDISender.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/73-ch/pySimpleNDI/HEAD/src/main.cpp --------------------------------------------------------------------------------