Linux Create AddOn For CamillaDSP - Help Needed - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26) +---- Forum: Audio DSP (https://forum.kodi.tv/forumdisplay.php?fid=235) +---- Thread: Linux Create AddOn For CamillaDSP - Help Needed (/showthread.php?tid=361412) |
Create AddOn For CamillaDSP - Help Needed - redger - 2021-03-15 Henrik Enquist over at DIYAudio has done a bang up job of creating cross platform DSP software DIYAudio CamillaDSP Development CamillaDSP Github I would like to see this packaged for Kodi, preferably for LibreElec / CoreElec. I've assumed this is the right forum to ask for help / guidance - please feel free to advise if I should go to LibreElec / CoreElec forum instead Currently I can see that the pre-compiled ArmV7 CamillaDSP will run on an AMLogic device ... but I have not yet persuaded all the control / management elements to install, they're mostly written in Python but need additional libraries At the very least I am struggling to work out how to access the following Python3 modules (Only looking to support Matrix and up)
I'm very much a beginner ... have written some basic Python before (at about the "Hello World" level) so this AddOn is likely to be a challenge. Anyone who'd like to help or take over is more than welcome :0 RE: Create AddOn For CamillaDSP - Help Needed - Fuzzard - 2021-03-15 You are probably going to be better off to engage with the libre/core elec guys, as at least 2 of those modules are c based modules (matplotlib,numpy), that have their own dependencies. You'll need to work out adding all that to their build system to be able to get a ready to go image with those c libraries. RE: Create AddOn For CamillaDSP - Help Needed - redger - 2021-03-15 (2021-03-15, 09:45)Fuzzard Wrote: You are probably going to be better off to engage with the libre/core elec guys, as at least 2 of those modules are c based modules (matplotlib,numpy), that have their own dependencies. You'll need to work out adding all that to their build system to be able to get a ready to go image with those c libraries. ok, thanks |