Advertisement
Guest User

Untitled

a guest
May 30th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. pcm.dmixed {
  2. type asym
  3. playback.pcm {
  4. type dmix
  5. ipc_key 5678293
  6. ipc_perm 0660
  7. ipc_gid audio
  8.  
  9. slave {
  10. channels 2 # make 6 or 5.1 channel
  11. pcm {
  12. format S16_LE # S32_LE
  13. rate 44100 # can also be 44100
  14. type hw
  15. card 0 # your card
  16. device 0 # your device
  17. subdevice 0 #important?
  18. }
  19.  
  20. period_size 1024
  21. buffer_size 2048
  22. }
  23.  
  24. bindings {
  25. 0 0
  26. 1 1
  27. # Uncomment below if using 6 channel
  28. # 2 2
  29. # 3 3
  30. # 4 4
  31. # 5 5
  32. }
  33. }
  34. capture.pcm "hw:0"
  35. }
  36.  
  37. pcm.!default {
  38. type plug
  39. slave.pcm "dmixed"
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement