├── .gitattributes ├── .gitignore ├── Examples ├── hello.py ├── spout_FBO_sender_example.py ├── spout_NST_receiver.py ├── spout_NST_sender_receiver.py ├── spout_receiver_example.py ├── spout_sender_example.py └── spout_webcam_sender_example.py ├── Images └── neural style resolume.png ├── Library └── SpoutSDK.pyd ├── README.md └── SpoutSDK ├── Spout for Python.sln └── SpoutSDK ├── Spout.cpp ├── Spout.h ├── SpoutCommon.h ├── SpoutCopy.cpp ├── SpoutCopy.h ├── SpoutDirectX.cpp ├── SpoutDirectX.h ├── SpoutGLDXinterop.cpp ├── SpoutGLDXinterop.h ├── SpoutGLextensions.cpp ├── SpoutGLextensions.h ├── SpoutMemoryShare.cpp ├── SpoutMemoryShare.h ├── SpoutReceiver.cpp ├── SpoutReceiver.h ├── SpoutSDK.cpp ├── SpoutSDK.h ├── SpoutSDK.vcxproj ├── SpoutSDK.vcxproj.filters ├── SpoutSender.cpp ├── SpoutSender.h ├── SpoutSenderMemory.cpp ├── SpoutSenderMemory.h ├── SpoutSenderNames.cpp ├── SpoutSenderNames.h ├── SpoutSharedMemory.cpp └── SpoutSharedMemory.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/Examples/hello.py -------------------------------------------------------------------------------- /Examples/spout_FBO_sender_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/Examples/spout_FBO_sender_example.py -------------------------------------------------------------------------------- /Examples/spout_NST_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/Examples/spout_NST_receiver.py -------------------------------------------------------------------------------- /Examples/spout_NST_sender_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/Examples/spout_NST_sender_receiver.py -------------------------------------------------------------------------------- /Examples/spout_receiver_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/Examples/spout_receiver_example.py -------------------------------------------------------------------------------- /Examples/spout_sender_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/Examples/spout_sender_example.py -------------------------------------------------------------------------------- /Examples/spout_webcam_sender_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/Examples/spout_webcam_sender_example.py -------------------------------------------------------------------------------- /Images/neural style resolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/Images/neural style resolume.png -------------------------------------------------------------------------------- /Library/SpoutSDK.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/Library/SpoutSDK.pyd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/README.md -------------------------------------------------------------------------------- /SpoutSDK/Spout for Python.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/Spout for Python.sln -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/Spout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/Spout.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/Spout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/Spout.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutCommon.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutCopy.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutCopy.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutDirectX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutDirectX.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutDirectX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutDirectX.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutGLDXinterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutGLDXinterop.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutGLDXinterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutGLDXinterop.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutGLextensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutGLextensions.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutGLextensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutGLextensions.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutMemoryShare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutMemoryShare.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutMemoryShare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutMemoryShare.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutReceiver.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutReceiver.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSDK.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSDK.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSDK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSDK.vcxproj -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSDK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSDK.vcxproj.filters -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSender.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSender.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSenderMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSenderMemory.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSenderMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSenderMemory.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSenderNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSenderNames.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSenderNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSenderNames.h -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSharedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSharedMemory.cpp -------------------------------------------------------------------------------- /SpoutSDK/SpoutSDK/SpoutSharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maybites/Spout-for-Python/HEAD/SpoutSDK/SpoutSDK/SpoutSharedMemory.h --------------------------------------------------------------------------------