Posts by stackcoder

    IMO it is not possible to extend or change the *.pa files.

    It is possible to extend *.pa files with this little workaround:

    Code: /storage/.config/pulse-daemon.conf.d/custom.conf
    default-script-file = /storage/.config/pulse-daemon.conf.d/custom.pa
    Code: /storage/.config/pulse-daemon.conf.d/custom.pa
    #!/usr/bin/pulseaudio -nF
    
    .fail
    .include /etc/pulse/default.pa
    
    # extend default startup script
    load-module module-rtp-recv latency_msec=250 sap_address=0.0.0.0

    It is possible to specify a custom PulseAudio startup script using the default-script-file config parameter. So another option without autostart.sh would be:

    Code: /storage/.config/pulse-daemon.conf.d/custom.conf
    default-script-file = /storage/.config/pulse-daemon.conf.d/custom.pa
    Bash: /storage/.config/pulse-daemon.conf.d/custom.pa
    #!/usr/bin/pulseaudio -nF
    
    .fail
    .include /etc/pulse/default.pa
    
    # extend default startup script
    load-module module-rtp-recv latency_msec=250 sap_address=0.0.0.0