PipeWire: Difference between revisions
imported>Mahmoudk1000 mNo edit summary |
imported>Aditya-adiraju m I tried copy pasting the code for the low-latency setup and was met with a bunch of syntax errors for the missing semicolons. So, I added them in the associated code block |
||
Line 224: | Line 224: | ||
services.pipewire.extraConfig.pipewire."92-low-latency" = { | services.pipewire.extraConfig.pipewire."92-low-latency" = { | ||
context.properties = { | context.properties = { | ||
default.clock.rate = 48000 | default.clock.rate = 48000; | ||
default.clock.quantum = 32 | default.clock.quantum = 32; | ||
default.clock.min-quantum = 32 | default.clock.min-quantum = 32; | ||
default.clock.max-quantum = 32 | default.clock.max-quantum = 32; | ||
} | }; | ||
}; | }; | ||
</syntaxHighlight> | </syntaxHighlight> |