I have a scenario where I need to play a source in different sinks available in the system. I have done the playback using the simple pulse audio playback programme which is der in the pulse audio examples. But now i have a problem.

Can anyone please help me out with three simple functions :

  • To list the available sinks in the system as an array with the index using pulse audio.
  • To assign an application with a particular sink from the list of sinks.
  • To set the volume of a particular aplication thats being played.

Suggestions are always welcome as always.

link|improve this question
feedback

1 Answer

The standard utilities padevchooser and pacmd do exactly this. I think you're not supposed to do this from the application, because that will obstruct the user's preference.

Pulseaudio was designed to give the user ultimate control. I think I remember that padevchooser can remember default sinks for applications, but I may be wrong.

This sample will get you started on enumerating devices using the libpulse library

http://www.ypass.net/blog/2009/10/pulseaudio-an-async-example-to-get-device-lists/

link|improve this answer
I know this stuff can be done using pacmd. I have done that. But need to write a code for the same. How do i get the sample code from. I have checked the source files from pulse audio GIT but they were too complicated to be understud.:P – Deb Jun 23 '11 at 14:47
I checked the coe. Thats absolutely what I wanted. But thats part 1. How dp I set the sink to a currently playing application. like we do in pacmd: move-sink-input <appindex><sinkindex> – Deb Jun 23 '11 at 14:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.