Giter VIP home page Giter VIP logo

Comments (1)

robtoll avatar robtoll commented on July 28, 2024 1

Success...

I was stuck on this for ages, then solved it 5 mins after opening the issue!

Sorry mark this as closed.

If anyone wants to know how to build for nwjs (windows only) I can explain, but it's quite convoluted.
I used node 16.0.0, and installed prebuild, node-gyp and nw-gyp globally (-g).

Building as is shows errors in the cpp source.
GetEndpointMute and GetAudioSessionMute functions need to be changed.

Change line 289 and 290 from
bool mute = false;
HRESULT res = pEndpointVolume->GetMute(&(BOOL)mute);
To
BOOL mute = false;
HRESULT res = pEndpointVolume->GetMute(&mute);

And Line 441 from
bool mute = false;
HRESULT res = pSessionVolume->GetMute(&(BOOL)mute);
To
BOOL mute = false;
HRESULT res = pSessionVolume->GetMute(&mute);

Then run...
node-gyp configure --msvs_version=2017
It won't work with python 3 installed, unless you install and specifically point to python 2.7

To build for nwjs run...
prebuild -t 0.51.0 -r node-webkit

If it fails and complains about missing nw.lib, go to the nwjs site and download the files nw.lib and node.lib
https://dl.nwjs.io/v0.51.0/x64/
Check the path that it errors with and put the files there.

Substitute 0.51.0 with whichever version of nwjs you're using.

Hope this helps someone!

from native-sound-mixer.

Related Issues (20)

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.