EscolarProgramming / NVDARemotePublic

Public repo for NVDARemote for iOS
8 stars 0 forks source link

Different speech protocols in Python v2 / v3 #7

Closed EscolarProgramming closed 3 years ago

EscolarProgramming commented 3 years ago

alekssamos The manner in which speech is sent with the Python2 and Python3 versions of the addon are different, which is probably why one gives different results from the other. EscolarProgramming I'm not sure if you've analyzed the protocol or not, but that may be helpful. To my knowledge, two versions of the NVDARemote server will allow this. This one in Go, and this one in Python. The one in Go has a binary release that you can use to intercept the protocol being used, which may help your development. The Python version has no release with this functionality yet, so you'll have to manually clone the repository and run the latest version of it with Python.

https://github.com/NVDARemote/NVDARemote/issues/169#issuecomment-847307120

EscolarProgramming commented 3 years ago

Already fixed