Advertisement
inukaze

ArchLinux /etc/asound.conf

May 26th, 2011
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. # Usando PulseAudio como Dispositivo de Sonido Predeterminado :
  2. pcm.pulse {
  3. type pulse
  4. }
  5. ctl.pulse {
  6. type pulse
  7. }
  8. pcm.!default {
  9. type pulse
  10. }
  11. ctl.!default {
  12. type pulse
  13. }
  14.  
  15. # Diviendo el sonido hacia las 4 Cornetas ( Surround 4.1 ) :
  16. pcm.dshare {
  17. type dmix
  18. ipc_key 2048
  19. slave {
  20. pcm "hw:0"
  21. rate 44100
  22. period_time 0
  23. period_size 1024
  24. buffer_size 8192
  25. channels 4
  26. }
  27. bindings {
  28. 0 0
  29. 1 1
  30. 2 2
  31. 3 3
  32. }
  33. }
  34. pcm.frontx {
  35. type plug
  36. slave {
  37. pcm "dshare"
  38. channels 4
  39. }
  40. ttable.0.0 1
  41. ttable.1.1 1
  42. }
  43. pcm.rearx {
  44. type plug
  45. slave {
  46. pcm "dshare"
  47. channels 4
  48. }
  49. ttable.0.2 1
  50. ttable.1.3 1
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement