by permitivity » Sun Dec 01, 2013 8:16 pm
Hello,
I have two Pogoplugs, one of them acting as the microphone and the audio stream is piped to another Pogoplug. Both the mic and the speaker part use ffmpeg.
$this->bbcode_second_pass_quote('', '
')#Microphone/audio source (IP address 192.168.1.42)
ffmpeg -re -f alsa -i plughw:0 -acodec mp2 -ab 192000 -ar 48000 -ac 1 -filter 'bandpass=f=1000:csg=0:width_type=q:w=.806' -f rtp
rtp://192.168.1.41:1234#Speaker (IP address 192.168.1.41)
ffmpeg -i
rtp://192.168.1.42:1234 -f alsa default
On the speaker side, I can use alsamixer to increase the volume. But how do I increase the recording volume on the microphone side? Running alsamixer on the microphone Pogoplug, I can see the "Mic" setting, but it's not editable like the speaker setting is. On the screen shot below, the "F3:Playback" is highlighted. I want to go to F4:capture, but hitting F4 makes me exit alsamixer.
Since the microphone is a USB microphone (Samson mic), I have a feeling this needs to be part of the ffmpeg command, but my search through ffmpeg turned up nothing, and ffmpeg is used for so many other things it's been pretty confusing reading about it.
Here's a screen shot of what alsamixer gives me:

If anyone has suggestions on how to go about this, please let me know.