We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that songs are only recognized through microphone input
The text was updated successfully, but these errors were encountered:
Hello,
The app uses the default recording device selected in the OS mixer.
On Windows, try one of the following:
Stereo Mix device
VB-CABLE Virtual Audio Device
WASAPI loopback mode The app should be recompiled with the following changes in Project.csproj
Project.csproj
<StartupObject>Project.Program</StartupObject> - <DefineConstants>$(DefineConstants);NO_WASAPI_CAPTURE</DefineConstants> + <DefineConstants>$(DefineConstants);WASAPI_CAPTURE</DefineConstants> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)' == 'Release'"> - <PublishAot>true</PublishAot> + <PublishSingleFile>true</PublishSingleFile> + <PublishTrimmed>true</PublishTrimmed> + <BuiltInComInteropSupport>true</BuiltInComInteropSupport> <DebuggerSupport>false</DebuggerSupport> <InvariantGlobalization>true</InvariantGlobalization> <UseSystemResourceKeys>true</UseSystemResourceKeys> <IlcDisableReflection>true</IlcDisableReflection> - <TargetName>$(AssemblyName).$(RuntimeIdentifier)</TargetName> <StripSymbols>true</StripSymbols> </PropertyGroup> + <ItemGroup> + <TrimmerRootAssembly Include="NAudio.Wasapi" /> + </ItemGroup>
or try this binary: Shazam-WASAPI.zip
Sorry, something went wrong.
No branches or pull requests
It seems that songs are only recognized through microphone input
The text was updated successfully, but these errors were encountered: