I bought an external jack plug mic.
Documentation says it suppose to be plug and play but i got nothing.
I copied the command in below link and execute but nothing changed.
https://raspiaudio.com/s/MicUltra_Input_Line_Input3
How to activate external microphone?
Hello and welcome!
But it seems that your ULTRA is not correctly installed, have yoi followed the tutorial here? ULTRA++ installation guide
For the external mic you should use the right plug jack and acltivate input 2 in the mixer
SO it is this script:
https://raspiaudio.com/s/MicUltra_Input_JackMicrophone_Input2
I installed ULTRA+ driver following the guide but i did not get the GUI device input, output menu and audio mix GUI as specified on the guide. However, my onboard microphone and onboard speaker (also external) works. I can record and play sounds files
When i executed âamixer scontrolsâ i got Master 0 and Capture 0 only. As a result, i can execute commands to control Master and Capture. Looking at the script, it has Speaker, Headphone, etc
Here is my amixer command output:
pi@port:~ $ amixer
Simple mixer control âMasterâ,0
Capabilities: pvolume pswitch pswitch-joined
Playback channels: Front Left - Front Right
Limits: Playback 0 - 65536
Mono:
Front Left: Playback 65536 [100%] [on]
Front Right: Playback 65536 [100%] [on]
Simple mixer control âCaptureâ,0
Capabilities: cvolume cswitch cswitch-joined
Capture channels: Front Left - Front Right
Limits: Capture 0 - 65536
Front Left: Capture 40 [0%] [on]
Front Right: Capture 40 [0%] [on]
This is solved. My card number is 2. So i had to append -c 2 to each command like below to work. What remains now is how to make command stay after reboot. Or do i have to run the script every time that i boot up?
amixer sset âHeadphoneâ 100 -c [card number]
amixer sset âHeadphone Playback ZCâ off -c [card number]
amixer sset âSpeakerâ 130 -c [card number]
amixer sset âSpeaker ACâ 5 -c [card number]
amixer sset âSpeaker DCâ 5 -c [card number]
amixer sset âSpeaker Playback ZCâ off -c [card number]
amixer sset âPCM Playback -6dBâ off -c [card number]
amixer sset âMono Output Mixer Leftâ off -c [card number]
amixer sset âMono Output Mixer Rightâ off -c [card number]
amixer sset âPlaybackâ 250 -c [card number]
amixer sset âCaptureâ 0 -c [card number]
amixer sset â3Dâ 0 -c [card number]
amixer sset â3D Filter Lower Cut-Offâ Low -c [card number]
amixer sset â3D Filter Upper Cut-Offâ off -c [card number]
amixer sset âADC Data Output Selectâ âLeft Data = Left ADC; Right Data = Right ADCâ -c [card number]
amixer sset âADC High Pass Filterâ off -c [card number]
amixer sset âADC PCMâ 230 -c [card number]
amixer sset âADC Polarityâ âNo Inversionâ -c [card number]
amixer sset âALC Attackâ 0 -c [card number]
amixer sset âALC Decayâ 0 -c [card number]
amixer sset âALC Functionâ âOffâ -c [card number]
amixer sset âALC Hold Timeâ 0 -c [card number]
amixer sset âALC Max Gainâ 0 -c [card number]
amixer sset âALC Min Gainâ 0 -c [card number]
amixer sset âALC Modeâ âALCâ -c [card number]
amixer sset âALC Targetâ 0 -c [card number]
amixer sset âDAC Deemphasisâ off -c [card number]
amixer sset âDAC Mono Mixâ âStereoâ -c [card number]
amixer sset âDAC Polarityâ âNo Inversionâ -c [card number]
amixer sset âLeft Boost Mixer LINPUT1â off -c [card number]
amixer sset âLeft Boost Mixer LINPUT2â on -c [card number]
amixer sset âLeft Boost Mixer LINPUT3â off -c [card number]
amixer sset âLeft Input Boost Mixer LINPUT1â 0 -c [card number]
amixer sset âLeft Input Boost Mixer LINPUT2â 200 -c [card number]
amixer sset âLeft Input Boost Mixer LINPUT3â 0 -c [card number]
amixer sset âLeft Input Mixer Boostâ on -c [card number]
amixer sset âLeft Output Mixer Boost Bypassâ 0 -c [card number]
amixer sset âLeft Output Mixer LINPUT3â 0 -c [card number]
amixer sset âLeft Output Mixer PCMâ on -c [card number]
amixer sset âNoise Gateâ off -c [card number]
amixer sset âNoise Gate Thresholdâ 0 -c [card number]
amixer sset âRight Boost Mixer RINPUT1â off -c [card number]
amixer sset âRight Boost Mixer RINPUT2â on -c [card number]
amixer sset âRight Boost Mixer RINPUT3â off -c [card number]
amixer sset âRight Input Boost Mixer RINPUT1â 0 -c [card number]
amixer sset âRight Input Boost Mixer RINPUT2â 200 -c [card number]
amixer sset âRight Input Boost Mixer RINPUT3â 0 -c [card number]
amixer sset âRight Input Mixer Boostâ on -c [card number]
amixer sset âRight Output Mixer Boost Bypassâ off -c [card number]
amixer sset âRight Output Mixer PCMâ on -c [card number]
amixer sset âRight Output Mixer RINPUT3â 0 -c [card number]
amixer sset âCaptureâ 40 -c [card number]
1 Like