Advertisement
Guest User

Untitled

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