You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is currently not possible to run the backend according to the documentation due to an import issue with PyOgg. Attempting to start the server results in the following error:
name ‘c_int_p’ is not defined
which prevents the Opus codec from being available.
Error Details
From the main branch, I encountered the following error:
libopus.opus_encode.argtypes = [oe_p, opus_int16_p, c_int, c_uchar_p, opus_int32]
NameError: name ‘c_uchar_p’ is not defined. Did you mean: ‘c_char_p’?
Looking for assistance in identifying the root cause and resolving this issue so that the backend can run properly. Any insights or suggestions would be greatly appreciated!
It is currently not possible to run the backend according to the documentation due to an import issue with PyOgg. Attempting to start the server results in the following error:
name ‘c_int_p’ is not defined
which prevents the Opus codec from being available.
Error Details
From the main branch, I encountered the following error:
libopus.opus_encode.argtypes = [oe_p, opus_int16_p, c_int, c_uchar_p, opus_int32]
NameError: name ‘c_uchar_p’ is not defined. Did you mean: ‘c_char_p’?
On #1981, the issue persists:
Attempts to Resolve
@mdmohsin7 suggested trying the following:
wheel
pyogg
pyogg
However, this did not resolve the issue.
Help Needed
Looking for assistance in identifying the root cause and resolving this issue so that the backend can run properly. Any insights or suggestions would be greatly appreciated!
Fix attempt PR: #1988
Related PR: #1981
The text was updated successfully, but these errors were encountered: