Difference between revisions of ".asoundrc"

From Pandora Wiki
Jump to: navigation, search
(Created page with "If you're trying to connect a bluetooth headset, see bluetooth headset guide. As of SuperZaxxon 155 (2013-07-24), the original ~/.asoundrc is: <code> <nowiki> pcm.dm...")
 
m
 
Line 3: Line 3:
 
As of SuperZaxxon 155 (2013-07-24), the original ~/.asoundrc is:
 
As of SuperZaxxon 155 (2013-07-24), the original ~/.asoundrc is:
  
<code>
+
<pre>
 
<nowiki>
 
<nowiki>
 
pcm.dmixed {
 
pcm.dmixed {
Line 52: Line 52:
 
}
 
}
 
</nowiki>
 
</nowiki>
</code>
+
</pre>

Latest revision as of 21:31, 19 December 2013

If you're trying to connect a bluetooth headset, see bluetooth headset guide.

As of SuperZaxxon 155 (2013-07-24), the original ~/.asoundrc is:


pcm.dmixed {
    type dmix
    ipc_key 1234
    slave {
         pcm "hw:0"
         buffer_size 8192
         period_size 2048
         #periods 128
         period_time 0
         buffer_time 0
         rate 44100
    }
}


pcm.softvol {
    type softvol
    slave {
          pcm      "dmixed"
    }
    control {
          name     "Master"
          card 0
    }
}

pcm.!default {
    type     plug
    slave.pcm   "softvol"
}

pcm.dsp0 {
    type plug
    slave {
          pcm "hw:0"
    }
}

ctl.dsp0 {
    type plug
    slave.pcm "hw:0"
}
ctl.mixer0 {
    type plug
    slave.pcm "hw:0"
}