Author Topic: ASIO Driver support  (Read 793 times)

marsmol

  • Newbie
  • *
  • Posts: 2
I have a sound card from marian seraph. It uses a special ASIO display: Int32LSB24

Of course, I can also run them in compatibility mode. But I would also like to do it without this detour.

I'm still very happy with Music Bee. For me it's a very good sounding player. It's fun to listen to.

Best regards Marius from Germany

sveakul

  • Hero Member
  • *****
  • Posts: 3278
MusicBee does have support for ASIO (see screenshot).  It should be selectable in Prefs/Player/Output. Be sure you are running the latest version of MB.

If it says you don't have ASIO, re-register the ASIO drivers in Windows.  I had to do this once with MusicBee, either a MB patch or a Windows Update made it not "see' the drivers.  The code below, if copied into a text file, given the *.reg" extension, and ran will re-register Realtek ASIO drivers but you'll have to find out what your own are named (look in Device Manager) and replace the code accordingly:

Code
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\ASIO\Realtek ASIO]
"CLSID"="{A80362FF-CE76-4DD9-874A-704C57BF0D6A}"
"Description"="Realtek ASIO"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{A80362FF-CE76-4DD9-874A-704C57BF0D6A}\InprocServer32]
@="c:\\windows\\system32\\rthdasio64.dll"
"ThreadingModel"="Apartment"

[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\ASIO\Realtek ASIO]
"CLSID"="{A80362FF-CE76-4DD9-874A-704C57BF0D6A}"
"Description"="Realtek ASIO"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\WOW6432Node\CLSID\{A80362FF-CE76-4DD9-874A-704C57BF0D6A}\InprocServer32]
@="c:\\windows\\SysWow64\\rthdasio.dll"
"ThreadingModel"="Apartment"