You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
Recently I'm already received 8 unit of audioinjector zero card that I plan to used it with my Radio Over IP (RoIP) controller using raspberry pi as a SIP client.
I'm successfully install a driver as your instruction on github. I'm able to record and play the .wav file using aplay and arecord.
Before this I'm using USB sound card and WM8960 audio hat for raspberry pi and all going well with my SIP python script.
But when I'm tested with your sound card, my python script return ALSA error as below:
alsa_set_params: Error setting channel
There are also other errors, all pointing to ALSA parameter error. As the result no audio coming in and out.
Then I search on audioinjector zero github for more information, luckily there is also a problem faced by others, below is the link:
I'm follow his suggestion by installing back pulseaudio package on the raspberry pi. Others SIP client connected to the controller using your card as a MIC input received the voice with a noise, not a clean audio. But the sound card on my controller didn't received anything from the connected SIP client, no audio out from your sound card.
I'm really appreciate that you can guide me to solve this problem, as I'm in the middle of testing my new controller before deliver it to my customer.
Hope to heard from you very soon
The text was updated successfully, but these errors were encountered:
Can you please tell me more about how the software trys to open the soundcard - what parameters it uses ? For example, sample format, number of channels and sample rate.
The following assumes you aren't using pulseaudio on the system....
One way to fix this quickly is to make the software use the ALSA plug plugin. So for example you may be able to use the "plughw" instead of the "hw" device.
For example, to force the entire system to use plughw, you would edit your ~/.asoundrc file to put :
pcm.!default {
type plug
slave {
pcm "hw:0,0"
}
}
ctl.!default {
type hw
card 0
}
If you use that .asoundrc file, then EVERY sound application will open the sound card as plughw and ALL software should work !
Hi
Recently I'm already received 8 unit of audioinjector zero card that I plan to used it with my Radio Over IP (RoIP) controller using raspberry pi as a SIP client.
I'm successfully install a driver as your instruction on github. I'm able to record and play the .wav file using aplay and arecord.
Before this I'm using USB sound card and WM8960 audio hat for raspberry pi and all going well with my SIP python script.
But when I'm tested with your sound card, my python script return ALSA error as below:
alsa_set_params: Error setting channel
There are also other errors, all pointing to ALSA parameter error. As the result no audio coming in and out.
Then I search on audioinjector zero github for more information, luckily there is also a problem faced by others, below is the link:
#31 (comment)
I'm follow his suggestion by installing back pulseaudio package on the raspberry pi. Others SIP client connected to the controller using your card as a MIC input received the voice with a noise, not a clean audio. But the sound card on my controller didn't received anything from the connected SIP client, no audio out from your sound card.
I'm really appreciate that you can guide me to solve this problem, as I'm in the middle of testing my new controller before deliver it to my customer.
Hope to heard from you very soon
The text was updated successfully, but these errors were encountered: