banner microphone with raspberry pi - Chad Stembridge / Unsplash / TDyan / RaspberryTips

How to Add a Microphone to Raspberry Pi?

If you click our links and make a purchase, we may earn an affiliate commission. Learn more

One of the first things that surprised me when I received my Raspberry Pi was that it didn’t have a microphone jack. This port seemed useful for many things, so I did some research and tests on the subject. And now I’m able to tell you more about it with this article.

There is no microphone on the Raspberry Pi, and no input jack. It is possible, however, to use the USB ports or Bluetooth to connect an external microphone.

As you read the article, you’ll understand:
– Why there’s no integrated microphone
– How to add a microphone to the Raspberry Pi
– How to check that it’s working and use it in a basic way
– Why a microphone would be useful for your future projects

If you’re feeling lost in all the Raspberry Pi jargon, I’ve got something to help you out. I’ve created a free glossary that explains all the essential terms and abbreviations in a way that’s easy to understand. It’s a great resource to have by your side. Get your free copy here.

Why is There No Microphone on a Raspberry Pi?

The basic concept of Raspberry Pi is to create a “computer” with these 3 criteria:

  • Small size
  • Affordable price
  • Possibilities for upgrades

The Raspberry Pi Foundation tries to keep the price of their products as low as possible, and don’t add any non-essential components to their device. Especially, if it’s possible to add it later by using existing components.

That’s the same reasoning regarding the microphone. Older Raspberry Pi models included a speaker jack output (as explained here), but not a microphone input.

And you’ll see that it’s not that complicated to add one, and at least it will totally fit your needs if you buy it separately.

How to Add a Microphone to the Raspberry Pi

The easiest way to add a microphone on a Raspberry Pi is to plug a USB microphone into a USB port or to use a jack-to-USB adapter for a traditional microphone.

The first thing to do before installing a microphone is to ask yourself what you want to do with it.
First, choose a microphone that fits your needs, without looking into whether it will be compatible or not. Assume that everything is possible.

Prefer reading without ads and popups?
Members get an ad-free version of every guide, plus exclusive project support.
Join the Community | Sign In

Have you made your choice or already have a microphone that you want to install?
Let’s see how to install it for the three most frequent cases.

USB Microphone

The first possibility, which is probably the simplest, is to connect a USB microphone (check the price on Amazon).
If you’re looking for a cheap solution to do some tests with, a USB microphone is perfect for you. Very affordable, no driver issues to deal with, and a discreet size.

The advantage of USB is that generally your microphone will be detected automatically by Raspberry Pi OS—it’s plug & play.

Download the Pi Glossary!
If you are lost in all these new words and abbreviations, request my free Raspberry Pi glossary here (PDF format)!
Download now

In my case, I plugged it into a free USB port, and the sound controller peripherals immediately detected the microphone, and added it to the list.

usb microphone on raspberry pi os desktop

If you see your microphone show up here, that’s it! You’ll have to adjust the amplification, and it’s ready to be used.

Bluetooth Microphone

If you have a Bluetooth microphone (headset or other), there are two cases that can occur:

Bluetooth Microphone Detected Automatically

I did the test using a Bluetooth headset with mic, and I was lucky that it was very well-recognized by the Raspberry Pi, so I could easily pair it.

Then the sound switched automatically to the headphones, and I was able to record my voice with the headset’s microphone.

However, I couldn’t adjust the output parameters (especially volume) via the GUI. I had to go through alsamixer:
alsamixer

Bluetooth Not Detected

If your Bluetooth microphone is not detected, the microphone manufacturer will generally provide a USB adapter with it, so you can use it,

Maybe it’s possible to install additional drivers or at least do something to help the Bluetooth recognize your microphone, but I admit I have not encountered this case, so I didn’t look into it more.

Then you go back to the chapter “USB Microphone” and follow the same steps.

Jack Microphone

This solution is the most complicated, so it’s only a good choice if you have a good reason to want to install a microphone jack at any price.

Indeed, since there is no integrated connector, you will need to add an extension to your Raspberry Pi. This solution involves buying and installing a sound card which will allow, among other things, to connect a microphone jack.

Download the Pi Glossary!
If you are lost in all these new words and abbreviations, request my free Raspberry Pi glossary here (PDF format)!
Download now

There are mainly two types of sound cards, and in both cases, it means that you will have to buy an additional component (either a USB soundcard or a HAT soundcard).

USB Sound Card

usb soundcard

I think this is probably the most straightforward way to add a microphone jack if that’s what you want.

For a cheap solution, you can find this USB-to-jack adapter on Amazon, which allows you to connect a USB headset and microphone to your Raspberry Pi. If you have a headset or microphone using jack ports, it’s the best solution for you.

The configuration will be the same as the one indicated at the beginning of this post.
Raspberry Pi OS will detect the adapter and you will only have to configure your microphone.

HAT Sound Card

For DIYers or those who need high fidelity sound quality, there are real sound cards, very close to those that can be found in conventional computers.

For a decent price, you can install this “HAT” sound card via the GPIO ports of Raspberry Pi and enjoy a professional product for advanced projects (all details on Amazon).  Once you have it, you can start an audio project without any doubts about the sound part, it will work!

Optional: Advanced Microphone Settings

If your microphone is already detected and working with Raspberry Pi OS, great! You can skip to the next section.

But if you need more fine-tune control, you can install a GUI tool: PulseAudio Volume Control.
(Even though Raspberry Pi OS now uses PipeWire instead of PulseAudio for the audio backend, this tool still works.)

pavucontrol on raspberry pi os desktop

I wouldn’t mess with this unless you absolutely need it, because I think the interface is still confusing after all these years. But if something’s not working as expected, this might be the best fix. For example, you can use this tool to redirect the mic output to specific apps.

Here’s how to install PulseAudio Volume Control from a terminal:
sudo apt install pavucontrol

After that you can launch it from the main menu > Sound & Video category.

Lost in the terminal? Grab My Pi Cheat-Sheet!
Download the free PDF, keep it open, and stop wasting time on Google.
Download now

Read next: Looking for a fun challenge? Start building your first Raspberry Pi robot!

How to Test a Microphone on Raspberry Pi

To test a microphone on Raspberry Pi OS, you can either use a command line (arecord) or install a sound editor application like Audacity.

In a Terminal

If you want to be sure that your microphone works well, the easiest way is to do a recording test.
To do this, open a terminal and type the following command:
arecord -D plughw:1,0 -d 10 test.wav

  • -d 10 tells how many seconds to record for. You can change this to -d 30 for instance.
  • -D plughw:1,0 chooses the microphone to record with.
    On your system, it might be a different number.
  • Use this command to list your microphone device:
    arecord -l
    In the screenshot below, since the microphone is identified as card ‘3’ and subdevice ‘0’, the parameter above would have to be changed to -D plughw:3,0 to record from this mic.
    arecord choose device list

Okay, now that it’s recorded, open the sound file with your favorite audio player to check that the microphone recorded your voice correctly.

For example, you can install the sox package:
sudo apt install sox

And then use the simple play command:
play test.wav

Quick note: If you find it hard to remember all these commands, I’ve put them all on a one-page cheat sheet. You can download it for free here so you have it handy whenever you're working on a project.

From the Desktop

Graphically, there are lots of applications that you can use to test your mic or manage your audio recordings. The one I recommend is Audacity.

Just install it with:
sudo apt install audacity
You can also install it with the Add/Remove software tool if you prefer.

Launch it from the main menu > Sound & Video > Audacity.

audacity record audio raspberry pi os

Make sure your microphone is selected under Audio Setup > Recording Device.
Click the red “Record” button to start your audio recording.

You can then check the sound by simply clicking on Play.

Lost in the terminal? Grab My Pi Cheat-Sheet!
Download the free PDF, keep it open, and stop wasting time on Google.
Download now

Audacity allows a lot of editing to your raw sound. For example, you can amplify it, change the frequency of sampling or add various effects. I use it a lot on my computer, but it also works well on Raspberry Pi.


🛠 This tutorial doesn't work anymore? Report the issue here, so that I can update it!

Prefer videos over reading? The RaspberryTips Community members get exclusive video lessons every month. Join now and watch them all right away. Get instant access.

Raspberry Pi Projects With a Microphone

There are tons of possible projects with a Raspberry Pi, and for some of them, the microphone quality will be essential.

Now that you have a functional mic, maybe you can think about these kinds of projects.
I’ll give you 2 or 3 examples to give you some ideas.

Home Assistant

smart home raspberry pi

Siri, Alexa, Google assistants… Have you ever heard of them?
Personal assistants are taking up more and more place in our lives and can help us with many things.

Did you know that it was possible to transform a Raspberry Pi in Amazon Echo?
Well, yes, there are many projects on the web allowing you to run the home assistant of your choice on your Raspberry Pi, and thus customize it according to your desires.

This project is relatively simple and inexpensive.
With your microphone, you already have 50% of the necessary material.
A speaker, some coding, and your Raspberry Pi will become the home assistant of your choice.

Baby Monitor

baby monitor

It is a project that can be a little more complicated if we go to the end of things, but that can be interesting. Indeed, it is possible to add the following elements on a Raspberry Pi:

What more could you want?
For less than $50, you will replace expensive accessories while having fun!

That’s all for today – I hope this article will help you understand why there is no microphone port in the Raspberry Pi and how to add one easily whatever your need is.
You also got a glimpse of the possibilities you can explore with a microphone connected to your Raspberry Pi.

If you have issues installing your microphone, please leave a comment in the community, and I will try to help you.

You may also be interested in this article to fix all kinds of audio issues: How To Fix Sound Issues On Raspberry Pi: Easy Solutions.

Whenever you’re ready, here are other ways I can help you:

Test Your Raspberry Pi Level (Free): Not sure why everything takes so long on your Raspberry Pi? Take this free 3-minute assessment and see what’s causing the problems.

The RaspberryTips Community: Need help or want to discuss your Raspberry Pi projects with others who actually get it? Join the RaspberryTips Community and get access to private forums, exclusive lessons, and direct help.

Master your Raspberry Pi in 30 days: If you are looking for the best tips to become an expert on Raspberry Pi, this book is for you. Learn useful Linux skills and practice multiple projects with step-by-step guides.

Master Python on Raspberry Pi: Create, understand, and improve any Python script for your Raspberry Pi. Learn the essentials step-by-step without losing time understanding useless concepts.

You can also find all my recommendations for tools and hardware on this page.

Similar Posts

12 Comments

  1. When I plug my earphones into my raspberry pi via the included audio jack in the Raspberry Pi B+ the audio input is not detected

  2. I tried to connect Bluetooth mike am getting an error when I enter the (arecord -D plughw:1,0 test.wav) has
    alsa lib pcm_hw.c1713:(_snd_pcm_hw_open) invalid for card
    arecord :main:788: audio open error :no such or no such directry

  3. Sorry, in english now:
    Hello
    How to associate sound, via a microphone to a video sequence. Either save a person who is talking in front of a camera (Pi camera).
    Thank you

  4. Hello/Bonjour fagol,

    I’m not sure to understand what you want to do but it depends on the software you use for the camera I think
    It should be possible to record the sound at the same time

    If you want to use it for a security camera, maybe Motio can help you: https://motion-project.github.io/motion_config.html

    If not, you have to explain what you want to do
    Maybe someone could help you

    Good luck

  5. Hi,
    Thanks for this article. Want to connect professional usb mike to raspberry 3, will be recording piano practice. Do you think I’ll need extra power. Can sound recorder be used with this? Just want a small program.

    1. Hello,

      It probably depends on the mic you want to use, just try it?
      For the software, Audacity is probably ok, but I don’t know if there are professional tools for Raspberry Pi

  6. Thank you for doing this! Now i’m newer into looking for these kinds of specs and stuff thus I’m still learning the important points of the audio world. Yet I was on the fence concerning dropping the money for this mic but you’ve helped me out there! I actually will use two of these different recording modes and this was very helpful!

  7. It’s incredible how complicated it is to have a simple mic working properly in raspbian pi 3! I have gone through various instructions 2 days and all leading deeper and deeper in the nowhere…
    ***
    What I need:
    Have a videoconference where I could use a webcam & integrated microphone on it.
    -> There simply isn’t simple instructions for that. I first need to get trained a Linux programmer before that is possible. Damn.

    1. Hi,

      If you can give us more details on your problem, maybe we could help
      Did you follow the tutorial? Where are you stuck?

      Patrick

  8. Before I did something wrong, I could click on the taskbar at the top of my screen and easily switch between a set of headphones and the speakers built into my Samsung HDMI display.

    BUT now when I right click my mouse while hovering over the speaker symbol, when I click on either “Analog” or “HDMI”, yes, the selection will switch between either one but the output is on my headset. Is there any way to kick my system in the can to make the choices work properly?

    Also, no videos will play. Is this related or not but the timing seems suspicious.

    I really REALLY do not want to reformat my SD card and do a complete reinstall.

    Any advice?

    Thank you.
    Terry Thomas
    Atlanta, Georgia USA

Comments are closed.