Want a lightweight audvis plugin
Hello, I am very interested in your audio visualization plugin and want to install it on Android Blender App.
However, there are still some problems in porting Blender to Android. One of the more important ones is that Android Blender App cannot run python.exe pip and other programs when installing plugins, so it cannot download the libraries required by your plugin, resulting in failure to install the plugin.
self._install_packages(["cffi", "sounddevice", "soundfile", "mido", "pygame"])
# self._install_packages(["python-rtmidi"])
self._install_packages(["opencv-python"], ["--no-deps"])
I looked at these libraries and they are all quite complicated and require a lot of time to port to Android Blender App.
I would like to ask if you have a lighter version that does not require the installation of those python libraries with C++ dynamic libraries? Or, if I modify your code and successfully install the plugin without installing these libraries, will there be some simple visualization functions?
Thank you so much.