├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── NDIlib └── __init__.py ├── README.md ├── cmake └── Modules │ └── FindNDI.cmake ├── example ├── find.py ├── recv.py ├── recv_audio_16bpp.py ├── recv_audio_sd.py ├── recv_av.py ├── recv_cv.py ├── recv_framesync.py ├── recv_framesync_resend.py ├── requirements.txt ├── routing.py ├── send_audio.py ├── send_audio_16bpp.py ├── send_capture.py ├── send_png.py └── send_video.py ├── setup.py └── src └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/LICENSE -------------------------------------------------------------------------------- /NDIlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/NDIlib/__init__.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Modules/FindNDI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/cmake/Modules/FindNDI.cmake -------------------------------------------------------------------------------- /example/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/find.py -------------------------------------------------------------------------------- /example/recv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/recv.py -------------------------------------------------------------------------------- /example/recv_audio_16bpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/recv_audio_16bpp.py -------------------------------------------------------------------------------- /example/recv_audio_sd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/recv_audio_sd.py -------------------------------------------------------------------------------- /example/recv_av.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/recv_av.py -------------------------------------------------------------------------------- /example/recv_cv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/recv_cv.py -------------------------------------------------------------------------------- /example/recv_framesync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/recv_framesync.py -------------------------------------------------------------------------------- /example/recv_framesync_resend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/recv_framesync_resend.py -------------------------------------------------------------------------------- /example/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | opencv-python 3 | sounddevice 4 | av -------------------------------------------------------------------------------- /example/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/routing.py -------------------------------------------------------------------------------- /example/send_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/send_audio.py -------------------------------------------------------------------------------- /example/send_audio_16bpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/send_audio_16bpp.py -------------------------------------------------------------------------------- /example/send_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/send_capture.py -------------------------------------------------------------------------------- /example/send_png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/send_png.py -------------------------------------------------------------------------------- /example/send_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/example/send_video.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/setup.py -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buresu/ndi-python/HEAD/src/main.cpp --------------------------------------------------------------------------------