Audio busy

Questions about hardware, drivers and peripherals
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
robyx1111

Audio busy

Post by robyx1111 »

Hello , i'm using mint 4.0 and i'm very happy with it , but i got a problem, while i pla y a game i cant' listen to an mp3 or while i watch a movie i cant' listen to an mp3 etc i mean my audio can work with just 1 application at time..

i'd like to fix it my audiocard is Sound Blaster 16PCI 4.1ch
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
robyx1111

Re: Audio busy

Post by robyx1111 »

sudo apt-get install esd
sudo apt-get install esd
Lettura della lista dei pacchetti in corso... Fatto
Generazione dell'albero delle dipendenze in corso
Reading state information... Fatto
E: Impossibile trovare esd

it mean impossible to find it ..
robyx1111

Re: Audio busy

Post by robyx1111 »

if you mean esound-client i've allready installed it
robyx1111

Re: Audio busy

Post by robyx1111 »

I FIXED IT :p

sudo gedit /etc/asound.conf
create it or open it and write this inside :

pcm.my_card {
type hw
card 0
# note this is ONLY for my sound card (via 82xx) - most hardware does not need a special sub-device.
# If you do have multiple sub-devices, test them with aplay -D hw0,x testfile.wav where x is one of the sub-devices.
# Other threads have better info on how to find out details like this on your card
device 1
}

# for outputting sound
pcm.dmixed {
type dmix
ipc_key 1024
# let multiple users share
# ipc_key_add_uid false
# IPC permissions for multi user sharing (octal, default 0600)
# ipc_perm 0666
slave {
pcm "my_card"
# rate 48000
# period_size 512
}
}

# for recording sound
pcm.dsnooped {
type dsnoop
ipc_key 2048
slave {
pcm "my_card"
# rate 48000
# period_size 128
}
}

# combines half duplex to full duplex with the asym plugin
pcm.asymed {
type asym
playback.pcm "dmixed"
capture.pcm "dsnooped"
}

# does automatic sample rate conversion
pcm.pasymed {
type plug
slave.pcm "asymed"
}

# for OSS compatability
pcm.dsp0 {
type plug
slave.pcm "asymed"
}

# sets the default device as your mixed device
pcm.!default {
type plug
slave.pcm "asymed"
}

# says what the mixer will control
ctl.!default {
type hw
card 0
}
Locked

Return to “Hardware Support”