No sound from some MP3s (speficially mono low resolution ones)

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
robo989 Offline
Senior Member
Posts: 176
Joined: Apr 2010
Reputation: 2
Post: #11
Hi mate,

Nope!

Have just put up with it as it's very few bits of mine that actually are in this low resolution, and the new "audioengine" is on the way, I'm pretty sure that will cure the problem as it's a complete re-write of the sound setup....Surely bring a load of other problems but that's the fun bit.....eh....ummmm something like that Smile
find quote
csavadia Offline
Junior Member
Posts: 10
Joined: May 2012
Reputation: 0
Post: #12
(2012-05-07 13:05)robo989 Wrote:  Hi mate,

Nope!

Have just put up with it as it's very few bits of mine that actually are in this low resolution, and the new "audioengine" is on the way, I'm pretty sure that will cure the problem as it's a complete re-write of the sound setup....Surely bring a load of other problems but that's the fun bit.....eh....ummmm something like that Smile


Mate, i went through some of the threads in the forums and there are solutions available. I will try them and advise you back.

Thnks
find quote
blm14 Offline
Senior Member
Posts: 127
Joined: Nov 2009
Reputation: 0
Post: #13
I recently posted instructions on how to play audio under the HDMI sampling rate minimum. Do a search for my username and you'll see them. Don't want to repost. Smile
find quote
csavadia Offline
Junior Member
Posts: 10
Joined: May 2012
Reputation: 0
Post: #14
(2012-05-07 14:40)blm14 Wrote:  I recently posted instructions on how to play audio under the HDMI sampling rate minimum. Do a search for my username and you'll see them. Don't want to repost. Smile

Thanks blm14, it was yours that i saw and wanted to try...cheers for posting to this thread :-)
find quote
csavadia Offline
Junior Member
Posts: 10
Joined: May 2012
Reputation: 0
Post: #15
@blm14 - your solution works perfecty...thanks

@robo989 - I think thats you solution right there!!!

Thanks guys
find quote
robo989 Offline
Senior Member
Posts: 176
Joined: Apr 2010
Reputation: 2
Post: #16
Hi mate, I actually got somewhere with this and got it working by modifing my asound.conf (which was empty previously)...Wasn't even looking for this...

Chuck this lot in at /etc/asound.conf

pcm.force48 {
type rate
slave {
pcm "hw:0,9"
rate 48000
}
}



That should sort it, obviously change "hw:0,9" to the correct output you are using for HDMI.

Then set audio device and passthrough device to both "custom" and for the value, "force48" in the xbmc settings.
Oh,,,,I'm late to the party, lol. Thanks for the advice.

Crikey, spent weeks being annoyed with this and gave up now a couple people give the answer and by chance I found it myself not even looking into this at the time.

I'll check your solutions, mine was from...well I can't remember, was browsing the xbmc audioengine thread and someone posted something referring to sample rate conversion so gave it a shot for this. Smile

Thanks again!
(This post was last modified: 2012-05-10 02:20 by robo989.)
find quote
jgrevich Offline
Junior Member
Posts: 1
Joined: Apr 2012
Reputation: 0
Post: #17
I have a Zotac AD-10 (AMD350) and had a similar issue with analog sound. I was able to fix it following this guide: http://forum.xbmc.org/showthread.php?tid=116996

Basically I needed to create an asound file (either /etc/asound.conf or ~/.asoundrc) with the following settings:

Code:
pcm.!default {
  type plug
  slave {
#    pcm "hw:1,0" #delete the first hash for sound over analog
#    pcm "hw:1,1" #delete the first hash for sound over optical
    pcm "hw:0,3" #delete the first hash for sound over hdmi
    rate 48000
  }
}

Then in XBMC make sure to use a custom output device of "hw:0,3" and select HDMI as the passthrough device (I have an AV receiver as a passthrough device). You may need to check with `aplay -l` to figure out the correct card/device number for your system.

Hope that helps, it's an annoying problem.
find quote
blm14 Offline
Senior Member
Posts: 127
Joined: Nov 2009
Reputation: 0
Post: #18
I should just note that this is a limitation of HDMI, not XBMC:

http://en.wikipedia.org/wiki/HDMI#Audio.2Fvideo

I'm kind of the mind that there should be some way to have XBMC resample to 48KHz automatically when you select HDMI out Undecided
(This post was last modified: 2012-05-10 03:16 by blm14.)
find quote
Post Reply