You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.1 KiB

  1. Pulse audio notes.
  2. to see what version of PA is on your machine
  3. pulseaudio --version
  4. To build xrdp pulse sink,
  5. get the pulse source that most closely matches your version on
  6. your machine. Get the source from
  7. http://freedesktop.org/software/pulseaudio/releases/
  8. run ./configure after extracting. I don't think you need to build it.
  9. edit Makefile to point to your pulse source directory.
  10. PA always respawning
  11. To stop its respawning habit, open /etc/pulse/client.conf, change
  12. autospawn = yes to autospawn = no, and set daemon-binary to /bin/true.
  13. Make sure these lines are uncommented, like this:
  14. autospawn = no
  15. daemon-binary = /bin/true
  16. xfreerdp -a 24 -z --plugin rdpsnd --data alsa:hw:0,0 -- 127.0.0.1
  17. to get ./configure on pulse source to run
  18. apt-get install libsndfile1-dev
  19. apt-get install libspeex-dev
  20. apt-get install libspeexdsp-dev
  21. alsamixer
  22. apt-get install alsa-utils
  23. /etc/asound.conf
  24. ---------------------------------
  25. pcm.pulse {
  26. type pulse
  27. }
  28. ctl.pulse {
  29. type pulse
  30. }
  31. pcm.!default {
  32. type pulse
  33. }
  34. ctl.!default {
  35. type pulse
  36. }
  37. ---------------------------------