Aleksandar 'Alex' Gotev
Aleksandar 'Alex' Gotev
@talhacomak @FUJIAN-DING have you found a solution for this? The library here simply invokes the speech recognizer by google.
this depends on the specific device you're running this on and has to do with the speech recognizer which this library simply wraps. Closing this as there's no action to...
Hi everyone, first of all thank you for the joint efforts and time spent creating and maintaining this wonder! I started using the lib successfully on macOS and Linux with...
By keeping everything else as my previous comment, except for the commands run at paragraph `C`, substituted by: ```powershell if (Test-Path .\build) { Remove-Item -Path .\build -Recurse -Force } cmake...
Got it one step further. Executed [steps A and B from my first comment](https://github.com/MTG/essentia/issues/1398#issuecomment-1989125322) and then: ```powershell if (Test-Path .\build) { Remove-Item -Path .\build -Recurse -Force } cmake -G "Visual...
@wo80 great! Yeah the path is correct. I can now import the library: ``` python Python 3.12.2 (tags/v3.12.2:6abddd9, Feb 6 2024, 21:26:36) [MSC v.1937 64 bit (AMD64)] on win32 Type...
Retried again all the steps, by also recreating the VM from scratch and explicitly specifying x64 architecture when installing python from chocolatey (it's using the installer from python.org) and also...
@wo80 @dbogdanov managed to get a completely working 64 bit wheel for Windows (with DLLs bundled in the wheel, so no static libs needed) with TensorFlow support. There are some...
```powershell cd build/wheel tar -xf essentia-2.1b6.dev0-cp312-cp312-win32.whl Get-ChildItem -Path essentia -Recurse -Filter "*.pyd" Select-String -Path essentia-2.1b6.dev0.dist-info/WHEEL -Pattern "Tag:" ``` outputs: ```powershell PS C:\Users\Admin\Desktop\essentia\build\wheel> tar -xf essentia-2.1b6.dev0-cp312-cp312-win32.whl PS C:\Users\Admin\Desktop\essentia\build\wheel> Get-ChildItem -Path essentia...
@wo80 if you post here the exact commands you're using for the dependencies, I can try them on my VM instead of using vspkg and see if the outcome changes....