Author Topic: Low Audio Volume on VIA Chipset  (Read 3623 times)

fibres

  • Guru
  • ****
  • Posts: 306
    • View Profile
    • LinuxMCE 08.10 RC Mirror.
Low Audio Volume on VIA Chipset
« on: September 24, 2007, 01:38:21 pm »
Hi

I have an Asus Pundit P2-AE2 Mini barebones system which Im using as a network boot media director.
It has the following chipsets

North Bridge: VIA K8M800
South Bridge: VIA VT8237R

Audio is a ADI AD 1888
6 Channel Codec

I have everything working great on this except for the audio is very quiet. No matter what I set in the mixer in kd the audio is very low. I have to turn my reciever upto full to be able to hear anything. When I switch to another input on the reciever the volume is deafening.
Any help on how to sort out this volume issue would be appreciated.

Regards

totallymaxed

  • LinuxMCE God
  • ****
  • Posts: 4660
  • Smart Home Consulting
    • View Profile
    • Dianemo - at home with technology
Re: Low Audio Volume on VIA Chipset
« Reply #1 on: September 24, 2007, 03:30:13 pm »
Hi

I have an Asus Pundit P2-AE2 Mini barebones system which Im using as a network boot media director.
It has the following chipsets

North Bridge: VIA K8M800
South Bridge: VIA VT8237R

Audio is a ADI AD 1888
6 Channel Codec

I have everything working great on this except for the audio is very quiet. No matter what I set in the mixer in kd the audio is very low. I have to turn my reciever upto full to be able to hear anything. When I switch to another input on the reciever the volume is deafening.
Any help on how to sort out this volume issue would be appreciated.

Regards

You could run the AVwizard again and make sure that the default volume is set correctly there (check if the audio volume is ok in the Wizard). We have similar hardware to you here and I can say that we have noticed this problem.
Andy Herron,
CHT Ltd

For Dianemo/LinuxMCE consulting advice;
@herron on Twitter, totallymaxed+inquiries@gmail.com via email or PM me here.

Get Dianemo-Rpi2 ARM Licenses http://forum.linuxmce.org/index.php?topic=14026.0

Get RaspSqueeze-CEC or Raspbmc-CEC for Dianemo/LinuxMCE: http://wp.me/P4KgIc-5P

Facebook: https://www.facebook.com/pages/Dianemo-Home-Automation/226019387454465

http://www.dianemo.co.uk

CrafyZA

  • Regular Poster
  • **
  • Posts: 40
    • View Profile
    • my2wheels
Re: Low Audio Volume on VIA Chipset
« Reply #2 on: September 24, 2007, 06:25:31 pm »
I had the same issue but fixed it. All my volumes was set to 100% and still it was very soft.
What you needd to have a look at, is alsamixer. it is a program you have to run in a new terminal window. set the main volume to about 75%. If you set it higher than this you will loose quality. let your amp do the rest.
You can set every thing from there. Gain, bass trebble etc etc etc...
MOBO: Asus A8V Deluxe
CPU   :AMD 64 Athalon 3500
RAM   : 1.5 GB Ram
GPU   : Nvidia 6600GT
PVR   : Leadtek Winfast XP2000
Bluetooth dongle for orbitor software on Nokia 6600
This setup works like a charm! Maybe just a little more ram ;-)

chrisbirkinshaw

  • Guru
  • ****
  • Posts: 431
    • View Profile
Re: Low Audio Volume on VIA Chipset
« Reply #3 on: October 17, 2007, 01:06:00 pm »
I had the same issue but fixed it. All my volumes was set to 100% and still it was very soft.
What you needd to have a look at, is alsamixer. it is a program you have to run in a new terminal window. set the main volume to about 75%. If you set it higher than this you will loose quality. let your amp do the rest.
You can set every thing from there. Gain, bass trebble etc etc etc...


You'll actually get the best audio quality with all the controls at 100% and your amp turned down, as otherwise you are not maximising the SNR ratio of the DAC. With a 24-bit soundcard this should not ever really be a problem but with a 16-bit soundcard this is an issue.

The problem I have had is that the system keeps overwriting my alsamixer settings. I saved a snapshot with alsactl and then wrote a script which runs and reloads the config every 2 seconds. A hack, but I couldn't find any other solution.


Chris

CrafyZA

  • Regular Poster
  • **
  • Posts: 40
    • View Profile
    • my2wheels
Re: Low Audio Volume on VIA Chipset
« Reply #4 on: October 17, 2007, 03:32:10 pm »
can you maybe send me that script. I have to set my volume in alsamixer every time i reboot.
The reason i never set my volume over 75% is because the RMS vallue for a sinus wave between 1 and -1 is always 0.707. Over that you pick up noise that is visible on a oscillator. going over 0.05 does not make a big difference. The amp volume i never take over 25% 1.) I feel too sorry for my speakers, and 2.) the neighbors will start to hate me :-)
This rule of thumb does not apply while watching TopGun. Then the speakers need to play a little and loosen up again :-D
MOBO: Asus A8V Deluxe
CPU   :AMD 64 Athalon 3500
RAM   : 1.5 GB Ram
GPU   : Nvidia 6600GT
PVR   : Leadtek Winfast XP2000
Bluetooth dongle for orbitor software on Nokia 6600
This setup works like a charm! Maybe just a little more ram ;-)

chrisbirkinshaw

  • Guru
  • ****
  • Posts: 431
    • View Profile
Re: Low Audio Volume on VIA Chipset
« Reply #5 on: October 23, 2007, 07:25:47 pm »
#!/bin/sh

while [ true ] ; do
alsactl restore
sleep 2
done