Giter VIP home page Giter VIP logo

Comments (6)

kleblackford avatar kleblackford commented on August 21, 2024

I will try to compile jack myself. I had JACK 1.9.22 installed and noticed that jackserver.lib is not in the lib folder...

from jack_server.

vrslev avatar vrslev commented on August 21, 2024

I think, I made it work somehow a year ago, at the time I published the issue you mentioned. Did you try doing what @falkTX suggested here: jackaudio/jack2#856 (comment)?

from jack_server.

vrslev avatar vrslev commented on August 21, 2024

Previously, jackserver library was included in official package. Did something changed?

from jack_server.

vrslev avatar vrslev commented on August 21, 2024

If it didn’t, we could probably find a way to make jack_server work without any hacks on windows consistently after installing JACK

from jack_server.

kleblackford avatar kleblackford commented on August 21, 2024

Previously, jackserver library was included in official package. Did something changed?

No, sorry, I was mistaken. Anyhow, I managed to fix the problem (in an ugly way by adding my JACK2 install path - C:\Program Files\JACK2) to the PATH environment variable.

from jack_server.

kleblackford avatar kleblackford commented on August 21, 2024

I think, I made it work somehow a year ago, at the time I published the issue you mentioned. Did you try doing what @falkTX suggested here: jackaudio/jack2#856 (comment)?

Hey, it looks like I have figured how to use winreg to find the JACK install folder. I will have to look into the source code a little deeper to understand how to use this with Windows :)

>>> import winreg
>>> 
>>> handle = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE,
...     r"Software\JACK")
>>>
>>> num_values = winreg.QueryInfoKey(handle)[1]
>>> for i in range(num_values):
...     print(winreg.EnumValue(handle, i))
... 
('ServerExecutable', 'C:\\Program Files\\JACK2\\jackd.exe', 1)
('InstallPath', 'C:\\Program Files\\JACK2', 1)
('Version', 'v1.9.22', 1)

from jack_server.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.