ndi-python icon indicating copy to clipboard operation
ndi-python copied to clipboard

Compiled and imported library but can't run functions

Open luisarandas opened this issue 3 years ago • 1 comments

Hello. Thanks for this library.

I'm running it on my Windows 10 using an RTX3070 but after the cmake and the build configuration for my OS I'm not really able to call the functions of the library. I can import it using the build files but when I run (e.g.) ndi_send = ndi.send_create() I get this error:

Traceback (most recent call last):
  File "ok.py", line 19, in <module>
    ndi_send = ndi.send_create()
AttributeError: module 'NDIlib' has no attribute 'send_create'

I'm importing through import NDIlib as ndi with a local folder


<pyfile>
<NDIlib>
    <NDIlib.cp35-win_amd64.pyd>
    <NDIlib.exp>
    <NDIlib.lib>
    <Processing.NDI.Lib.x64.lib>

Any idea what is this? Thanks

luisarandas avatar Jan 07 '22 20:01 luisarandas

Hi, sorry for late reply. You must copy Processing.NDI.Lib.x64.dll, not Processing.NDI.Lib.x64.lib.

buresu avatar Mar 18 '22 01:03 buresu