Advertisement
Guest User

sink-eq6_1.conf

a guest
Mar 21st, 2024
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. # 6 band sink equalizer
  2. #
  3. # Copy this file into a conf.d/ directory such as
  4. # ~/.config/pipewire/pipewire.conf.d/
  5. #
  6. context.modules = [
  7. {name = libpipewire-module-filter-chain
  8. args = {
  9. node.description = "DeckEQ"
  10. media.name = "DeckEQ"
  11. filter.graph = {
  12. nodes = [
  13. {
  14. type = builtin
  15. name = eq_band_1
  16. label = bq_lowshelf
  17. control = { "Freq" = 140.0 "Q" = 2.8 "Gain" = 6 }
  18. }
  19. {
  20. type = builtin
  21. name = eq_band_2
  22. label = bq_peaking
  23. control = { "Freq" = 221.0 "Q" = 1.29 "Gain" = 10.0 }
  24. }
  25. {
  26. type = builtin
  27. name = eq_band_3
  28. label = bq_peaking
  29. control = { "Freq" = 750.0 "Q" = 4.1 "Gain" = 3 }
  30. }
  31. {
  32. type = builtin
  33. name = eq_band_4
  34. label = bq_peaking
  35. control = { "Freq" = 750.0 "Q" = 5.2 "Gain" = -9.3 }
  36. }
  37. {
  38. type = builtin
  39. name = eq_band_5
  40. label = bq_peaking
  41. control = { "Freq" = 1257.0 "Q" = 1.644 "Gain" = 2.4 }
  42. }
  43. {
  44. type = builtin
  45. name = eq_band_6
  46. label = bq_peaking
  47. control = { "Freq" = 8552.0 "Q" = 1 "Gain" = -5 }
  48. }
  49. {
  50. type = builtin
  51. name = eq_band_7
  52. label = bq_peaking
  53. control = { "Freq" = 12648.0 "Q" = 2.2 "Gain" = -6.8 }
  54. }
  55. ]
  56. links = [
  57. { output = "eq_band_1:Out" input = "eq_band_2:In" }
  58. { output = "eq_band_2:Out" input = "eq_band_3:In" }
  59. { output = "eq_band_3:Out" input = "eq_band_4:In" }
  60. { output = "eq_band_4:Out" input = "eq_band_5:In" }
  61. { output = "eq_band_5:Out" input = "eq_band_6:In" }
  62. { output = "eq_band_6:Out" input = "eq_band_7:In" }
  63. ]
  64. }
  65. audio.channels = 2
  66. audio.position = [ FL FR ]
  67. capture.props = {
  68. node.name = "effect_input.eq"
  69. media.class = Audio/Sink
  70. }
  71. playback.props = {
  72. node.name = "effect_output.eq"
  73. node.passive = false
  74. }
  75. }
  76. }
  77. ]
  78.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement