{"id":51,"date":"2025-10-10T05:03:45","date_gmt":"2025-10-10T05:03:45","guid":{"rendered":"https:\/\/askyourpc.com\/?post_type=docs&#038;p=51"},"modified":"2025-10-10T05:03:46","modified_gmt":"2025-10-10T05:03:46","password":"","slug":"laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers","status":"publish","type":"docs","link":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\/","title":{"rendered":"Laptop Audio Not Working \u2014 Fix Speakers, Headphones, and Sound Drivers"},"content":{"rendered":"<h2 class=\"wp-block-heading\">Overview<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If your laptop suddenly stops producing sound, plays distorted audio, or fails to detect headphones, the issue is usually related to <strong>audio drivers<\/strong>, <strong>output configuration<\/strong>, or <strong>sound hardware settings<\/strong>.<br>This guide helps you identify whether your system\u2019s sound problem is software-based or hardware-related and shows you how to restore clear, reliable audio on both Windows and macOS.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What you\u2019ll learn<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>How to verify your sound device and output configuration<\/li>\n\n\n\n<li>How to reinstall or reset sound drivers<\/li>\n\n\n\n<li>How to test headphone and speaker jacks<\/li>\n\n\n\n<li>How to use diagnostic tools to detect hidden sound errors<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Estimated time:<\/strong> 15\u201325 minutes<br><strong>Skill level:<\/strong> Beginner to Intermediate<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Terms and Definitions<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Term<\/th><th>Meaning<\/th><\/tr><\/thead><tbody><tr><td><strong>Output device<\/strong><\/td><td>The active sound destination (internal speakers, headphones, Bluetooth, HDMI)<\/td><\/tr><tr><td><strong>Driver<\/strong><\/td><td>Software that lets your OS communicate with the sound card or chipset<\/td><\/tr><tr><td><strong>Default playback device<\/strong><\/td><td>The audio device your system uses for sound output<\/td><\/tr><tr><td><strong>Audio endpoint<\/strong><\/td><td>Logical interface Windows or macOS uses for each sound output<\/td><\/tr><tr><td><strong>Audio service<\/strong><\/td><td>Background process controlling sound on the system (e.g., Windows Audio, CoreAudio)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Steps<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1 \u2014 Check the Basics<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Verify the laptop isn\u2019t muted. Press the <strong>volume up<\/strong> key or adjust the slider.<\/li>\n\n\n\n<li>Check the <strong>speaker icon<\/strong> in your system tray or menu bar.<\/li>\n\n\n\n<li>Unplug any connected Bluetooth or HDMI devices that might be taking over the audio output.<\/li>\n\n\n\n<li>For wired headphones, make sure the plug is fully seated in the jack.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If you still hear no sound, move on to the next step.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2 \u2014 Verify the Output Device<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows PowerShell<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-AudioDevice -List | Where-Object { $_.Type -eq \"Output\" }\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">(If the above module isn\u2019t installed, you can check manually with:)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-PnpDevice -Class AudioEndpoint | Select-Object FriendlyName, Status\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Confirms which audio device Windows recognizes as active.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Right-click the <strong>speaker icon<\/strong> \u2192 <strong>Sounds<\/strong> \u2192 <strong>Playback tab<\/strong>.<\/li>\n\n\n\n<li>Make sure the correct output (Speakers \/ Headphones \/ HDMI) is set as <strong>Default<\/strong>.<\/li>\n\n\n\n<li>Test each by selecting <strong>Properties \u2192 Test<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS Terminal<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>system_profiler SPAudioDataType\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Shows all connected audio devices.<br>Then open <strong>System Settings \u2192 Sound \u2192 Output<\/strong> and select the proper device.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3 \u2014 Restart Audio Services<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows PowerShell<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-Service | Where-Object {$_.Name -like \"Audio*\"} | Restart-Service\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Restarts the <strong>Windows Audio<\/strong> y <strong>Audio Endpoint Builder<\/strong> services.<br>This resolves most \u201cno sound\u201d problems without rebooting.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS Terminal<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo killall coreaudiod\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Restarts the <strong>CoreAudio<\/strong> daemon.<br>Sound should return immediately after the process restarts.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4 \u2014 Update or Reinstall Audio Drivers<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Abrir <strong>Device Manager \u2192 Sound, video, and game controllers<\/strong>.<\/li>\n\n\n\n<li>Right-click your sound device (often Realtek, Intel, or NVIDIA HD Audio).<\/li>\n\n\n\n<li>Seleccionar <strong>Uninstall device<\/strong>.<\/li>\n\n\n\n<li>Restart your computer.<br>Windows will reinstall the correct driver automatically.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>PowerShell alternative<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-PnpDevice -Class Sound | Disable-PnpDevice -Confirm:$false\nGet-PnpDevice -Class Sound | Enable-PnpDevice -Confirm:$false\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Re-enables all sound devices without rebooting.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><br>Apple includes drivers within system updates. Run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>softwareupdate -l\nsoftwareupdate -i -a\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">After installation, restart and recheck <strong>System Settings \u2192 Sound<\/strong>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5 \u2014 Check for Disabled Devices<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Sometimes devices are hidden or disabled after updates.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open the <strong>Sound Control Panel \u2192 Playback tab<\/strong>.<\/li>\n\n\n\n<li>Right-click anywhere in the list \u2192 Enable <strong>Show Disabled Devices<\/strong>.<\/li>\n\n\n\n<li>If your speakers or headphones appear gray, right-click and select <strong>Enable<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><br>If audio devices disappear entirely, reset the NVRAM:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Shut down.<\/li>\n\n\n\n<li>Turn on and immediately hold <strong>Option + Command + P + R<\/strong> for 20 seconds.<\/li>\n\n\n\n<li>Release and check audio settings again.<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6 \u2014 Test with External Devices<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Connect a wired pair of headphones or external speakers.<\/li>\n\n\n\n<li>If they work, your internal speakers may be faulty or disconnected.<\/li>\n\n\n\n<li>If they don\u2019t, your system\u2019s sound driver or audio codec may be malfunctioning.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows PowerShell<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-WmiObject Win32_SoundDevice | Select-Object Name, Manufacturer, Status\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Shows whether Windows detects a working audio device.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>system_profiler SPAudioDataType | grep \"Output Source\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Confirms active sound path.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7 \u2014 Run Built-in Sound Troubleshooters<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>msdt.exe \/id AudioPlaybackDiagnostic\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Launches Windows\u2019 built-in sound troubleshooter.<br>Follow prompts to detect and repair misconfigurations.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Abrir <strong>System Settings \u2192 Sound \u2192 Output<\/strong>.<\/li>\n\n\n\n<li>Play test audio and verify the <strong>Output Volume<\/strong> slider isn\u2019t muted.<\/li>\n\n\n\n<li>If still silent, boot into <strong>Safe Mode<\/strong> and test again. Safe Mode isolates faulty extensions.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 8 \u2014 Reset Power and Firmware Controllers<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Residual power can sometimes freeze audio chipsets.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows (Embedded Controller reset)<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Shut down the laptop.<\/li>\n\n\n\n<li>Disconnect charger and battery (if removable).<\/li>\n\n\n\n<li>Hold Power for 15 seconds, then reconnect.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS (SMC reset)<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Shut down.<\/li>\n\n\n\n<li>Hold <strong>Shift + Control + Option + Power<\/strong> for 10 seconds.<\/li>\n\n\n\n<li>Release and turn on.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">After reset, test sound again.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Verification<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Check<\/th><th>Command<\/th><th>Expected Result<\/th><\/tr><\/thead><tbody><tr><td>Active device<\/td><td><code>Get-PnpDevice -Class AudioEndpoint<\/code><\/td><td>Status = OK<\/td><\/tr><tr><td>Output test<\/td><td>Playback test tone<\/td><td>Sound plays normally<\/td><\/tr><tr><td>Audio service<\/td><td><code>Get-Service AudioSrv<\/code><\/td><td>Running<\/td><\/tr><tr><td>Volume<\/td><td>System tray or <code>pmset -g<\/code><\/td><td>Audible level not muted<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">If all checks pass and audio plays clearly, your sound subsystem is healthy.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A laptop with no sound typically points to muted output, misrouted playback devices, or a corrupted audio driver.<br>By following these steps\u2014verifying outputs, restarting audio services, reinstalling drivers, and testing external devices\u2014you can restore normal audio playback on both Windows and macOS.<br>If sound remains missing despite correct settings, the internal amplifier or audio codec chip may have failed and should be inspected by a technician.<\/p>","protected":false},"excerpt":{"rendered":"<p>Overview If your laptop suddenly stops producing sound, plays distorted audio, or fails to detect headphones, the issue is usually related to audio drivers, output configuration, or sound hardware settings.This guide helps you identify whether your system\u2019s sound problem is software-based or hardware-related and shows you how to restore clear, reliable audio on both Windows [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"footnotes":""},"doc_category":[12],"doc_tag":[],"class_list":["post-51","docs","type-docs","status-publish","hentry","doc_category-hardware-fixes"],"blocksy_meta":[],"year_month":"2026-08","word_count":789,"total_views":"3","reactions":{"happy":"0","normal":"0","sad":"0"},"author_info":{"name":"user","author_nicename":"user","author_url":"https:\/\/www.askyourpc.com\/es\/author\/user\/"},"doc_category_info":[{"term_name":"Hardware Fixes","term_url":"https:\/\/www.askyourpc.com\/es\/docs-category\/hardware-fixes\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Laptop Audio Not Working \u2014 Fix Speakers, Headphones, and Sound Drivers - Ask Your PC<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.askyourpc.com\/es\/docs\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Laptop Audio Not Working \u2014 Fix Speakers, Headphones, and Sound Drivers - Ask Your PC\" \/>\n<meta property=\"og:description\" content=\"Overview If your laptop suddenly stops producing sound, plays distorted audio, or fails to detect headphones, the issue is usually related to audio drivers, output configuration, or sound hardware settings.This guide helps you identify whether your system\u2019s sound problem is software-based or hardware-related and shows you how to restore clear, reliable audio on both Windows [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.askyourpc.com\/es\/docs\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\/\" \/>\n<meta property=\"og:site_name\" content=\"Ask Your PC\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-10T05:03:46+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/docs\\\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\\\/\",\"url\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/docs\\\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\\\/\",\"name\":\"Laptop Audio Not Working \u2014 Fix Speakers, Headphones, and Sound Drivers - Ask Your PC\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/#website\"},\"datePublished\":\"2025-10-10T05:03:45+00:00\",\"dateModified\":\"2025-10-10T05:03:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/docs\\\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/docs\\\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/docs\\\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Docs\",\"item\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Laptop Audio Not Working \u2014 Fix Speakers, Headphones, and Sound Drivers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/#website\",\"url\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/\",\"name\":\"Ask Your PC\",\"description\":\"Helpful Computer Tutorials\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/#organization\",\"name\":\"Ask Your PC\",\"url\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.askyourpc.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/askyourpc-logo-mark.png\",\"contentUrl\":\"https:\\\/\\\/www.askyourpc.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/askyourpc-logo-mark.png\",\"width\":512,\"height\":512,\"caption\":\"Ask Your PC\"},\"image\":{\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Laptop Audio Not Working \u2014 Fix Speakers, Headphones, and Sound Drivers - Ask Your PC","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\/","og_locale":"es_ES","og_type":"article","og_title":"Laptop Audio Not Working \u2014 Fix Speakers, Headphones, and Sound Drivers - Ask Your PC","og_description":"Overview If your laptop suddenly stops producing sound, plays distorted audio, or fails to detect headphones, the issue is usually related to audio drivers, output configuration, or sound hardware settings.This guide helps you identify whether your system\u2019s sound problem is software-based or hardware-related and shows you how to restore clear, reliable audio on both Windows [&hellip;]","og_url":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\/","og_site_name":"Ask Your PC","article_modified_time":"2025-10-10T05:03:46+00:00","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"4 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\/","url":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\/","name":"Laptop Audio Not Working \u2014 Fix Speakers, Headphones, and Sound Drivers - Ask Your PC","isPartOf":{"@id":"https:\/\/www.askyourpc.com\/es\/#website"},"datePublished":"2025-10-10T05:03:45+00:00","dateModified":"2025-10-10T05:03:46+00:00","breadcrumb":{"@id":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.askyourpc.com\/es\/docs\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-audio-not-working-fix-speakers-headphones-and-sound-drivers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.askyourpc.com\/es\/"},{"@type":"ListItem","position":2,"name":"Docs","item":"https:\/\/www.askyourpc.com\/es\/tutorials\/"},{"@type":"ListItem","position":3,"name":"Laptop Audio Not Working \u2014 Fix Speakers, Headphones, and Sound Drivers"}]},{"@type":"WebSite","@id":"https:\/\/www.askyourpc.com\/es\/#website","url":"https:\/\/www.askyourpc.com\/es\/","name":"Ask Your PC","description":"Helpful Computer Tutorials","publisher":{"@id":"https:\/\/www.askyourpc.com\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.askyourpc.com\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/www.askyourpc.com\/es\/#organization","name":"Ask Your PC","url":"https:\/\/www.askyourpc.com\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.askyourpc.com\/es\/#\/schema\/logo\/image\/","url":"https:\/\/www.askyourpc.com\/wp-content\/uploads\/2026\/08\/askyourpc-logo-mark.png","contentUrl":"https:\/\/www.askyourpc.com\/wp-content\/uploads\/2026\/08\/askyourpc-logo-mark.png","width":512,"height":512,"caption":"Ask Your PC"},"image":{"@id":"https:\/\/www.askyourpc.com\/es\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/51","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/comments?post=51"}],"version-history":[{"count":1,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/51\/revisions"}],"predecessor-version":[{"id":52,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/51\/revisions\/52"}],"wp:attachment":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/media?parent=51"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/doc_category?post=51"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/doc_tag?post=51"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}