Digital Audio Labs Driver
Reference | Questions |
---|---|
CH000503 | How do I find what computer sound card I have? |
CH000660 | Where do I locate motherboard sound drivers? |
CH000834 | How to install and update a computer driver. |
DirectX | Direct X information and help. |
Company | Drivers page |
A-Trend | A-Trend sound card drivers. |
Acer | Acer sound card drivers. |
Ad-Chips | Ad-Chips sound card drivers. |
Addonics | Addonics sound card drivers. |
AdLib | AdLib sound card drivers. |
AIMS Lab Inc. | AIMS radio card drivers. |
Analog Devices | Analog sound card drivers. |
AOpen | AOpen sound card drivers. |
Aria | Aria sound card drivers. |
ASOUND | Asound sound card drivers. |
ASUS | ASUS sound card drivers. |
AudioExcel | AudioExcel sound card drivers. |
AUDIOTRACK | AUDIOTRACK sound card drivers. |
Avance Logic | Avance Logic sound card drivers. |
AXLE | AXLE sound card drivers. |
Aztech | Aztech sound card drivers. |
Aztech Labs | Aztech Labs sound card drivers. |
Boca Research | Boca Research sound card drivers. |
BTC | BTC (Behavior Tech Comptuers) sound card drivers. |
C-Media | CMI (C-Media) sound card drivers. |
Chaintech | Chaintech sound card drivers. |
Conexant | Conexant sound card drivers. |
Creative Labs | Creative Labs sound card drivers. |
Crystal Lake | Crystal Lake sound card drivers. |
Crystal | Crystal sound card drivers. |
Cyrix | Cyrix sound drivers. |
Diamond Multimedia | Diamond Multimedia sound card drivers. |
Digital Audio Labs | Digital Audio Labs sound card drivers. |
Digital Research | Digital Research sound card drivers. |
Ectiva | Ectiva sound card drivers. |
Eiger Labs | Eiger Labs sound card drivers. |
Ensoniq | Ensoniq sound card drivers. |
ESS Technologies | ESS sound card drivers. |
Frontier Design | Frontier sound card drivers. |
Genius-Kye | Genius-Kye sound card drivers. |
Genoa Systems | Genoa sound card drivers. |
Guillemot Hercules | Guillemot Hercules sound card drivers. |
I/O Magic | I/O Magic sound card drivers. |
IntreSource | IntreSource sound card drivers. |
Labway | Labway sound card drivers. |
Logitech | Logitech sound card drivers. |
Magitronic | Magitronic sound card drivers. |
Mediatrix | Mediatrix sound card drivers. |
Multiwave | Multiwave sound card drivers. |
New Media | New Media sound card drivers. |
Oak Technology | Oak Technology sound card drivers. |
Opcode | Opcode sound card drivers. |
OPTi | OPTi sound card drivers. |
Orchid Technology | Orchid sound card drivers. |
PC Chips | PC Chips sound card drivers. |
Phoebe | Phoebe sound card drivers. |
Prometheus | Prometheus sound card drivers. |
Pure Digital | Pure Digital sound card drivers. |
Realtek | Realtek sound card drivers. |
Rockwell | Rockwell sound card drivers. |
Roland | Roland sound card drivers. |
Shark Multimedia | Shark Multimedia sound card drivers. |
SIIG | SIIG sound card drivers. |
Silicom Multimedia | Silicom Multimedia sound card drivers. |
Sound Blaster | Sound Blaster sound card drivers. |
Sound Pro | Sound Pro sound card drivers. |
SoundMAX | SoundMAX sound card drivers. |
Televideo Inc. | Televideo sound card drivers. |
Trigem | Trigem sound card drivers. |
Triple D | Triple D sound card drivers. |
Turtle Beach | Turtle Beach sound card drivers. |
VIA | VIA sound card drivers. |
VideoLogic | VideoLogic sound card drivers. |
Voyetra | Voyetra sound card drivers. |
Yamaha | Yamaha sound card drivers. |
Zoltrix | Zoltrix sound card drivers. |
See Github repository for files and source code: ADAU1701 driver repo.
Comment on the used kernel version:
Users of the newest version of Raspbian Jessie (kernel version 4.9.35-v7+) have to update their kernel first, because needed modules weren't included at this time.
The D150 Digital Preamplifier expands McIntosh's digital music capabilities by supporting many of the newest digital audio formats such as DSD and DXD. A USB input accepts up to 32-bit/384kHz signals and supports DSD64, DSD128, DXD 352.8kHz and DXD 384kHz. Two coaxial and two optical inputs accept up to 24-bit/192kHz signals. Check out the latest innovations, partnerships and videos from DTS including the award winning DTS:X immersive audio, next-gen infotainment and AI-powered in cabin safety experiences in our connected car technology, and all of the creator and tournament activations within gaming! At the 'Realtek High Definition Audio Ver. 6.0.1.6764' screen, click 'Next'. At the 'License Agreement' dialog, read the agreement, then, if you agree, click 'I Agree' to continue with the installation. DOWNLOAD Version 5.10.3523 Download 238 File Size 1.56 MB File Count 1 Create Date July 23, 2019 Last Updated July 23, 2019 CardDeluxe WDM/ASIO device driver (5.10.3523) (Windows® XP/Vista/7; 32/64-bit) CardDeluxe WDM/ASIO device driver (5.10.3523) (Windows® XP/Vista/7; 32/64-bit) Attached Files. Creative Labs Sound Blaster Live! 5.12.1.203, A05-W. This is the latest version of this driver for your Dimension 2400. Please refer to the Release.
The current kernel version can be checked with the following command:
> uname -a
Update to Kernelversion 4.9.80-v7+ (higher versions also possible) with:
> sudo rpi-update 5c80565
Installation guide for Raspbian (in a Terminal-Window or SSH-Client):
(Volumio users see below)
Install git:
> sudo apt-get install git
Clone files:
> git clone https://github.com/MKSounds/ADAU1701-I2S-Audio-Driver-for-Raspberry-Pi.git
Copy overlay file to overlays directory:
> sudo cp ADAU1701-I2S-Audio-Driver-for-Raspberry-Pi/adau1701-i2s.dtbo /boot/overlays
Relink the overlay to the device tree: Therefore config.txt has to be modified.
Open the file with:
> sudo nano /boot/config.txt
Search for the following line and comment it with a hash (navigation with arrow keys):
Digital Audio Drivers Windows 10
#dtparam=audio=on
Add the following line at the end of the file:
dtoverlay=adau1701-i2s
Close the editor by pressing STRG+X and save the changes with y.
If you want to play files which don't use 48 kHz sample rate, you have to resample the audio data. Therefore a ALSA config file will be used, which will affect the whole audio output of the system.
Create file and open it (if it's already existing and there is code in it, you have to integrate the new code or delete the existing):
> sudo nano ~/.asoundrc
Copy and paste the following lines (paste by right clicking):
pcm.InterpolatedOutput {
type plug
slave {
pcm 'hw:0,0'
format S24_LE
rate 48000
}
}
pcm.!default InterpolatedOutput
Close the editor by pressing STRG+X and save the changes with y.
Reboot:
> sudo reboot
After a reboot the ADAU1701 I²S output should be present as an output device (without any controls!).
You can check if everything worked correctly by typing:
Realtek Digital Audio Driver
> aplay -l
You should see the following output:
pi@raspberrypi:~ $ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: Output [ADAU1701 I2S Output], device 0: bcm2835-i2s-dit-hifi dit-hifi-0 []
Subdevices: 1/1
Subdevice #0: subdevice #0
You are now able to play sound via music player of your choice (tested with Audacity and LX music player).
Installation guide for Volumio:
(Volumio version: 2.389 2018-03-26)
Set-up the volumio partition and go through the installation wizard. Don't choose an I²S-soundcard already.
Activate SSH via a SSH file directly in the boot partition or via DEV zone in Volumio: Link
SSH-user and -password are 'volumio'. For sudo commands you have to type the password again.
Install git (should be included in Volumio):
> sudo apt-get install git
Clone files:
> git clone https://github.com/MKSounds/ADAU1701-I2S-Audio-Driver-for-Raspberry-Pi.git
Copy overlay file to overlays directory:
> sudo cp ADAU1701-I2S-Audio-Driver-for-Raspberry-Pi/adau1701-i2s.dtbo /boot/overlays
Integrate the ADAU1701 soundcard in the dropdown menue of Volumio:
Open the file dacs.json with:
> sudo nano /volumio/app/plugins/system_controller/i2s_dacs/dacs.json
Add (copy&paste) the following line as new first device in the list of available I²S devices:
Audio Labs Speakers
{'id':'adau1701-i2s','name':'ADAU1701 I2S Output','overlay':'adau1701-i2s','alsanum':'1','mixer':','modules':','script':','needsreboot':'yes'},