element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Raspberry pi 3 No audio through HDMI
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 9 replies
  • Answers 1 answer
  • Subscribers 665 subscribers
  • Views 29050 views
  • Users 0 members are here
  • raspberry_pi_space
Related

Raspberry pi 3 No audio through HDMI

Former Member
Former Member over 9 years ago

I need some help fixing the audio so it comes out through the HDMI cable. Also how do I reboot?

  • Sign in to reply
  • Cancel
Parents
  • ghaberek
    0 ghaberek over 9 years ago

    The Raspberry Pi should output audio through the HDMI connector automatically.

     

    There is an article here that describes how to manually configure the audio output: Audio configuration.

     

    You may be running into the issue described at the bottom of the page:

    If you're still not getting sound via HDMI

    In some rare cases, it is necessary to edit config.txt to force HDMI mode (as opposed to DVI mode, which does not send sound).

    You can do this by editing /boot/config.txt and setting hdmi_drive=2, then rebooting for the change to take effect.

    You can reboot by clicking Menu > Log off.. or open a terminal and type sudo reboot.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • Former Member
    0 Former Member over 9 years ago in reply to ghaberek

    Thanks for advice. I was able to get the audio working.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • gleandre
    0 gleandre over 8 years ago in reply to Former Member

    so how was you able to resolve the  problem

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • velicusimon
    0 velicusimon over 6 years ago in reply to gleandre

    I've tried every solution in here and i couldn't get the HDMI audio to work. I gave up and put all the options back to how they came by default but then i've found out that when I play an audio file using this command: omxplayer -o both file.mp3, the audio was working so i've decided to give it one more try and i've finally found the solution. None of the things in the config file will affect your audio so i think the best way is to put them back as they were by default and then open a console and do exactly this:

     

     

     

     

    sudo apt-get remove --purge alsa-utils*

    sudo apt-get clean

    sudo apt-get autoremove

    sudo apt-get remove --purge alsamixer*

    sudo apt-get clean

    sudo apt-get autoremove

     

     

    sudo apt-get update

    sudo apt-get upgrade

     

     

    sudo apt-get install alsa-utils

    sudo apt-get install alsamixer

     

     

    sudo reboot

     

     

    Then select the HDMI output using the speaker icon in the taskbar and that's it. I hope it works for you !

     

     

    I've been able to find out this solution because of the omxplayer (that worked) which is a very basic music player that doesn't use the alsa driver, instead it has it's own drivers named openmax, so the problem had to be coming from the alsa drivers.

     

     

    *IF IT'S STILL NOT WORKING AFTER DOING WHAT I'VE SAID ABOVE, than you could also try to uncomment hdmi_drive=2 in /boot/config.txt to force HDMI mode. (To do this you have to open up a console, write sudo nano /boot/config.txt and the file will open, navigate down to hdmi_drive and delete the # that's before it then hit Ctrl+X, hit Y and enter then enter once again. After that reboot the system and prey :))

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • velicusimon
    0 velicusimon over 6 years ago in reply to gleandre

    I've tried every solution in here and i couldn't get the HDMI audio to work. I gave up and put all the options back to how they came by default but then i've found out that when I play an audio file using this command: omxplayer -o both file.mp3, the audio was working so i've decided to give it one more try and i've finally found the solution. None of the things in the config file will affect your audio so i think the best way is to put them back as they were by default and then open a console and do exactly this:

     

     

     

     

    sudo apt-get remove --purge alsa-utils*

    sudo apt-get clean

    sudo apt-get autoremove

    sudo apt-get remove --purge alsamixer*

    sudo apt-get clean

    sudo apt-get autoremove

     

     

    sudo apt-get update

    sudo apt-get upgrade

     

     

    sudo apt-get install alsa-utils

    sudo apt-get install alsamixer

     

     

    sudo reboot

     

     

    Then select the HDMI output using the speaker icon in the taskbar and that's it. I hope it works for you !

     

     

    I've been able to find out this solution because of the omxplayer (that worked) which is a very basic music player that doesn't use the alsa driver, instead it has it's own drivers named openmax, so the problem had to be coming from the alsa drivers.

     

     

    *IF IT'S STILL NOT WORKING AFTER DOING WHAT I'VE SAID ABOVE, than you could also try to uncomment hdmi_drive=2 in /boot/config.txt to force HDMI mode. (To do this you have to open up a console, write sudo nano /boot/config.txt and the file will open, navigate down to hdmi_drive and delete the # that's before it then hit Ctrl+X, hit Y and enter then enter once again. After that reboot the system and prey :))

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube