How do I select a default sound card with alsa?
up vote
5
down vote
favorite
I wish to select a default sound card, or disable all others, in order to have the correct one selected after suspend.
sound pulseaudio alsa
add a comment |
up vote
5
down vote
favorite
I wish to select a default sound card, or disable all others, in order to have the correct one selected after suspend.
sound pulseaudio alsa
How many sound cards do you have in the system?
– Mitch♦
Jun 14 '12 at 15:26
2, but 4 things show up in sound settings for output and 3 things for input.
– MarkovCh1
Jun 14 '12 at 16:37
add a comment |
up vote
5
down vote
favorite
up vote
5
down vote
favorite
I wish to select a default sound card, or disable all others, in order to have the correct one selected after suspend.
sound pulseaudio alsa
I wish to select a default sound card, or disable all others, in order to have the correct one selected after suspend.
sound pulseaudio alsa
sound pulseaudio alsa
asked Jun 14 '12 at 15:18
MarkovCh1
1,34711528
1,34711528
How many sound cards do you have in the system?
– Mitch♦
Jun 14 '12 at 15:26
2, but 4 things show up in sound settings for output and 3 things for input.
– MarkovCh1
Jun 14 '12 at 16:37
add a comment |
How many sound cards do you have in the system?
– Mitch♦
Jun 14 '12 at 15:26
2, but 4 things show up in sound settings for output and 3 things for input.
– MarkovCh1
Jun 14 '12 at 16:37
How many sound cards do you have in the system?
– Mitch♦
Jun 14 '12 at 15:26
How many sound cards do you have in the system?
– Mitch♦
Jun 14 '12 at 15:26
2, but 4 things show up in sound settings for output and 3 things for input.
– MarkovCh1
Jun 14 '12 at 16:37
2, but 4 things show up in sound settings for output and 3 things for input.
– MarkovCh1
Jun 14 '12 at 16:37
add a comment |
3 Answers
3
active
oldest
votes
up vote
0
down vote
accepted
This is a way set default sound output card dynamically using PulseAudio (not ALSA).
Check list of Sources and Sinks
$ pactl list short sources
0 alsa_output.pci-0000_00_1b.0.analog-stereo.monitor module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
1 alsa_input.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
2 combined.monitor module-combine-sink.c s16le 2ch 44100Hz SUSPENDED
$ pactl list short sinks
0 alsa_output.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
1 combined module-combine-sink.c s16le 2ch 44100Hz IDLE
2 alsa_output.pci-0000_01_00.1.hdmi-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
Set defaults:
$ pactl set-default-source alsa_input.pci-0000_00_1b.0.analog-stereo
$ pactl set-default-sink alsa_output.pci-0000_00_1b.0.analog-stereo
It is possible even to set ports too. See How to switch sound output with key shortcut
Reference: man pactl
1
pactl is for pulseaudio, not alsa
– slang
Jan 5 '16 at 2:57
@slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
– user.dz
Jan 5 '16 at 6:15
add a comment |
up vote
1
down vote
I personally use alsamixer
alsamixer
Hit F6 to select sound card.
F6 only lets you choose which card to modify sound levels for, no?
– MarkovCh1
Jun 15 '12 at 0:22
Sets the selected card as default as well (at least it does for me).
– Panther
Jun 15 '12 at 1:33
You can select card with alsamixer (F6
orS
) and than dosudo alsactl store
to save your settings as default.
– dmitry_romanov
Dec 8 '15 at 17:31
add a comment |
up vote
0
down vote
Seeing as I don't have Pulse, the accepted answer isn't valid for others like me.
This should provide a decent solution here that works off of ALSA alone.
I have a bit of detail since I have 3 devices (onboard 2-channel, video card HDMI, PCI 5.1-channel) in my machine, with my preferred device being last.
what worked for me was editing /etc/asound.conf
with the following:
(resource: http://www.alsa-project.org/main/index.php/Asoundrc )
pcm.!default {
type hw
card 0
}
ctl.!default {
type hw
card 0
}
If I would've intuitively set my default device as 2
, the order of the above devices would've flipped to this after restarting:
0: [CMI8738 ]
1: [Nvidia ]
2: [Nvidia_1 ]
with the default device being 2.
(this would continue after every reboot, and no restarting alsa did not make apps play audio)
To stop my machine from trolling me, I had to edit /etc/modprobe.d/alsa-base.conf
and add the following line:
(resource (search for the 6th occurrence of "order"): https://alsa.opensrc.org/MultipleCards#How_to_choose_a_particular_order_for_multiple_installed_cards )
options snd slots=snd-cmipci,
which forced my preferred device at 0 so the default card would match:
Hopefully I'll never have to touch these settings again, and it'll help others like me who don't want to deal with PulseAudio dropping audio streams.
(yes this means poorly developed apps like Discord won't identify your audio devices without Pulse)
never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
– Tcll
Nov 29 at 14:42
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
This is a way set default sound output card dynamically using PulseAudio (not ALSA).
Check list of Sources and Sinks
$ pactl list short sources
0 alsa_output.pci-0000_00_1b.0.analog-stereo.monitor module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
1 alsa_input.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
2 combined.monitor module-combine-sink.c s16le 2ch 44100Hz SUSPENDED
$ pactl list short sinks
0 alsa_output.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
1 combined module-combine-sink.c s16le 2ch 44100Hz IDLE
2 alsa_output.pci-0000_01_00.1.hdmi-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
Set defaults:
$ pactl set-default-source alsa_input.pci-0000_00_1b.0.analog-stereo
$ pactl set-default-sink alsa_output.pci-0000_00_1b.0.analog-stereo
It is possible even to set ports too. See How to switch sound output with key shortcut
Reference: man pactl
1
pactl is for pulseaudio, not alsa
– slang
Jan 5 '16 at 2:57
@slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
– user.dz
Jan 5 '16 at 6:15
add a comment |
up vote
0
down vote
accepted
This is a way set default sound output card dynamically using PulseAudio (not ALSA).
Check list of Sources and Sinks
$ pactl list short sources
0 alsa_output.pci-0000_00_1b.0.analog-stereo.monitor module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
1 alsa_input.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
2 combined.monitor module-combine-sink.c s16le 2ch 44100Hz SUSPENDED
$ pactl list short sinks
0 alsa_output.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
1 combined module-combine-sink.c s16le 2ch 44100Hz IDLE
2 alsa_output.pci-0000_01_00.1.hdmi-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
Set defaults:
$ pactl set-default-source alsa_input.pci-0000_00_1b.0.analog-stereo
$ pactl set-default-sink alsa_output.pci-0000_00_1b.0.analog-stereo
It is possible even to set ports too. See How to switch sound output with key shortcut
Reference: man pactl
1
pactl is for pulseaudio, not alsa
– slang
Jan 5 '16 at 2:57
@slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
– user.dz
Jan 5 '16 at 6:15
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
This is a way set default sound output card dynamically using PulseAudio (not ALSA).
Check list of Sources and Sinks
$ pactl list short sources
0 alsa_output.pci-0000_00_1b.0.analog-stereo.monitor module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
1 alsa_input.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
2 combined.monitor module-combine-sink.c s16le 2ch 44100Hz SUSPENDED
$ pactl list short sinks
0 alsa_output.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
1 combined module-combine-sink.c s16le 2ch 44100Hz IDLE
2 alsa_output.pci-0000_01_00.1.hdmi-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
Set defaults:
$ pactl set-default-source alsa_input.pci-0000_00_1b.0.analog-stereo
$ pactl set-default-sink alsa_output.pci-0000_00_1b.0.analog-stereo
It is possible even to set ports too. See How to switch sound output with key shortcut
Reference: man pactl
This is a way set default sound output card dynamically using PulseAudio (not ALSA).
Check list of Sources and Sinks
$ pactl list short sources
0 alsa_output.pci-0000_00_1b.0.analog-stereo.monitor module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
1 alsa_input.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
2 combined.monitor module-combine-sink.c s16le 2ch 44100Hz SUSPENDED
$ pactl list short sinks
0 alsa_output.pci-0000_00_1b.0.analog-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
1 combined module-combine-sink.c s16le 2ch 44100Hz IDLE
2 alsa_output.pci-0000_01_00.1.hdmi-stereo module-alsa-card.c s16le 2ch 44100Hz RUNNING
Set defaults:
$ pactl set-default-source alsa_input.pci-0000_00_1b.0.analog-stereo
$ pactl set-default-sink alsa_output.pci-0000_00_1b.0.analog-stereo
It is possible even to set ports too. See How to switch sound output with key shortcut
Reference: man pactl
edited Oct 30 at 15:35
Murphy
555313
555313
answered Mar 16 '14 at 23:34
user.dz
34.4k1190175
34.4k1190175
1
pactl is for pulseaudio, not alsa
– slang
Jan 5 '16 at 2:57
@slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
– user.dz
Jan 5 '16 at 6:15
add a comment |
1
pactl is for pulseaudio, not alsa
– slang
Jan 5 '16 at 2:57
@slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
– user.dz
Jan 5 '16 at 6:15
1
1
pactl is for pulseaudio, not alsa
– slang
Jan 5 '16 at 2:57
pactl is for pulseaudio, not alsa
– slang
Jan 5 '16 at 2:57
@slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
– user.dz
Jan 5 '16 at 6:15
@slang, thanks, you are correct, I put a note for that. However the OP has alsa in title, nothing in description and tagged for both. This give me an impression that the user was looking for a solution at any level. BTW, my self I want to know if there is a way using ALSA, this is an old question stayed unresolved for two years.
– user.dz
Jan 5 '16 at 6:15
add a comment |
up vote
1
down vote
I personally use alsamixer
alsamixer
Hit F6 to select sound card.
F6 only lets you choose which card to modify sound levels for, no?
– MarkovCh1
Jun 15 '12 at 0:22
Sets the selected card as default as well (at least it does for me).
– Panther
Jun 15 '12 at 1:33
You can select card with alsamixer (F6
orS
) and than dosudo alsactl store
to save your settings as default.
– dmitry_romanov
Dec 8 '15 at 17:31
add a comment |
up vote
1
down vote
I personally use alsamixer
alsamixer
Hit F6 to select sound card.
F6 only lets you choose which card to modify sound levels for, no?
– MarkovCh1
Jun 15 '12 at 0:22
Sets the selected card as default as well (at least it does for me).
– Panther
Jun 15 '12 at 1:33
You can select card with alsamixer (F6
orS
) and than dosudo alsactl store
to save your settings as default.
– dmitry_romanov
Dec 8 '15 at 17:31
add a comment |
up vote
1
down vote
up vote
1
down vote
I personally use alsamixer
alsamixer
Hit F6 to select sound card.
I personally use alsamixer
alsamixer
Hit F6 to select sound card.
answered Jun 14 '12 at 18:20
Panther
77.4k12156258
77.4k12156258
F6 only lets you choose which card to modify sound levels for, no?
– MarkovCh1
Jun 15 '12 at 0:22
Sets the selected card as default as well (at least it does for me).
– Panther
Jun 15 '12 at 1:33
You can select card with alsamixer (F6
orS
) and than dosudo alsactl store
to save your settings as default.
– dmitry_romanov
Dec 8 '15 at 17:31
add a comment |
F6 only lets you choose which card to modify sound levels for, no?
– MarkovCh1
Jun 15 '12 at 0:22
Sets the selected card as default as well (at least it does for me).
– Panther
Jun 15 '12 at 1:33
You can select card with alsamixer (F6
orS
) and than dosudo alsactl store
to save your settings as default.
– dmitry_romanov
Dec 8 '15 at 17:31
F6 only lets you choose which card to modify sound levels for, no?
– MarkovCh1
Jun 15 '12 at 0:22
F6 only lets you choose which card to modify sound levels for, no?
– MarkovCh1
Jun 15 '12 at 0:22
Sets the selected card as default as well (at least it does for me).
– Panther
Jun 15 '12 at 1:33
Sets the selected card as default as well (at least it does for me).
– Panther
Jun 15 '12 at 1:33
You can select card with alsamixer (
F6
or S
) and than do sudo alsactl store
to save your settings as default.– dmitry_romanov
Dec 8 '15 at 17:31
You can select card with alsamixer (
F6
or S
) and than do sudo alsactl store
to save your settings as default.– dmitry_romanov
Dec 8 '15 at 17:31
add a comment |
up vote
0
down vote
Seeing as I don't have Pulse, the accepted answer isn't valid for others like me.
This should provide a decent solution here that works off of ALSA alone.
I have a bit of detail since I have 3 devices (onboard 2-channel, video card HDMI, PCI 5.1-channel) in my machine, with my preferred device being last.
what worked for me was editing /etc/asound.conf
with the following:
(resource: http://www.alsa-project.org/main/index.php/Asoundrc )
pcm.!default {
type hw
card 0
}
ctl.!default {
type hw
card 0
}
If I would've intuitively set my default device as 2
, the order of the above devices would've flipped to this after restarting:
0: [CMI8738 ]
1: [Nvidia ]
2: [Nvidia_1 ]
with the default device being 2.
(this would continue after every reboot, and no restarting alsa did not make apps play audio)
To stop my machine from trolling me, I had to edit /etc/modprobe.d/alsa-base.conf
and add the following line:
(resource (search for the 6th occurrence of "order"): https://alsa.opensrc.org/MultipleCards#How_to_choose_a_particular_order_for_multiple_installed_cards )
options snd slots=snd-cmipci,
which forced my preferred device at 0 so the default card would match:
Hopefully I'll never have to touch these settings again, and it'll help others like me who don't want to deal with PulseAudio dropping audio streams.
(yes this means poorly developed apps like Discord won't identify your audio devices without Pulse)
never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
– Tcll
Nov 29 at 14:42
add a comment |
up vote
0
down vote
Seeing as I don't have Pulse, the accepted answer isn't valid for others like me.
This should provide a decent solution here that works off of ALSA alone.
I have a bit of detail since I have 3 devices (onboard 2-channel, video card HDMI, PCI 5.1-channel) in my machine, with my preferred device being last.
what worked for me was editing /etc/asound.conf
with the following:
(resource: http://www.alsa-project.org/main/index.php/Asoundrc )
pcm.!default {
type hw
card 0
}
ctl.!default {
type hw
card 0
}
If I would've intuitively set my default device as 2
, the order of the above devices would've flipped to this after restarting:
0: [CMI8738 ]
1: [Nvidia ]
2: [Nvidia_1 ]
with the default device being 2.
(this would continue after every reboot, and no restarting alsa did not make apps play audio)
To stop my machine from trolling me, I had to edit /etc/modprobe.d/alsa-base.conf
and add the following line:
(resource (search for the 6th occurrence of "order"): https://alsa.opensrc.org/MultipleCards#How_to_choose_a_particular_order_for_multiple_installed_cards )
options snd slots=snd-cmipci,
which forced my preferred device at 0 so the default card would match:
Hopefully I'll never have to touch these settings again, and it'll help others like me who don't want to deal with PulseAudio dropping audio streams.
(yes this means poorly developed apps like Discord won't identify your audio devices without Pulse)
never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
– Tcll
Nov 29 at 14:42
add a comment |
up vote
0
down vote
up vote
0
down vote
Seeing as I don't have Pulse, the accepted answer isn't valid for others like me.
This should provide a decent solution here that works off of ALSA alone.
I have a bit of detail since I have 3 devices (onboard 2-channel, video card HDMI, PCI 5.1-channel) in my machine, with my preferred device being last.
what worked for me was editing /etc/asound.conf
with the following:
(resource: http://www.alsa-project.org/main/index.php/Asoundrc )
pcm.!default {
type hw
card 0
}
ctl.!default {
type hw
card 0
}
If I would've intuitively set my default device as 2
, the order of the above devices would've flipped to this after restarting:
0: [CMI8738 ]
1: [Nvidia ]
2: [Nvidia_1 ]
with the default device being 2.
(this would continue after every reboot, and no restarting alsa did not make apps play audio)
To stop my machine from trolling me, I had to edit /etc/modprobe.d/alsa-base.conf
and add the following line:
(resource (search for the 6th occurrence of "order"): https://alsa.opensrc.org/MultipleCards#How_to_choose_a_particular_order_for_multiple_installed_cards )
options snd slots=snd-cmipci,
which forced my preferred device at 0 so the default card would match:
Hopefully I'll never have to touch these settings again, and it'll help others like me who don't want to deal with PulseAudio dropping audio streams.
(yes this means poorly developed apps like Discord won't identify your audio devices without Pulse)
Seeing as I don't have Pulse, the accepted answer isn't valid for others like me.
This should provide a decent solution here that works off of ALSA alone.
I have a bit of detail since I have 3 devices (onboard 2-channel, video card HDMI, PCI 5.1-channel) in my machine, with my preferred device being last.
what worked for me was editing /etc/asound.conf
with the following:
(resource: http://www.alsa-project.org/main/index.php/Asoundrc )
pcm.!default {
type hw
card 0
}
ctl.!default {
type hw
card 0
}
If I would've intuitively set my default device as 2
, the order of the above devices would've flipped to this after restarting:
0: [CMI8738 ]
1: [Nvidia ]
2: [Nvidia_1 ]
with the default device being 2.
(this would continue after every reboot, and no restarting alsa did not make apps play audio)
To stop my machine from trolling me, I had to edit /etc/modprobe.d/alsa-base.conf
and add the following line:
(resource (search for the 6th occurrence of "order"): https://alsa.opensrc.org/MultipleCards#How_to_choose_a_particular_order_for_multiple_installed_cards )
options snd slots=snd-cmipci,
which forced my preferred device at 0 so the default card would match:
Hopefully I'll never have to touch these settings again, and it'll help others like me who don't want to deal with PulseAudio dropping audio streams.
(yes this means poorly developed apps like Discord won't identify your audio devices without Pulse)
answered Nov 27 at 15:23
Tcll
2931213
2931213
never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
– Tcll
Nov 29 at 14:42
add a comment |
never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
– Tcll
Nov 29 at 14:42
never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
– Tcll
Nov 29 at 14:42
never mind, this stopped working for me after the 3rd or 4th reboot (doesn't mean this won't continue to work for others), the default card was set appropriately, but still failed to output audio (I couldn't get it working again), so I fixed it by removing it (yes the card still works, it's not a hardware problem) after finding I could use my headphone out for my rear speakers, which has yet to give me a problem.
– Tcll
Nov 29 at 14:42
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f150851%2fhow-do-i-select-a-default-sound-card-with-alsa%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
How many sound cards do you have in the system?
– Mitch♦
Jun 14 '12 at 15:26
2, but 4 things show up in sound settings for output and 3 things for input.
– MarkovCh1
Jun 14 '12 at 16:37