G6-1b70us Pavilion. Picture but no sound from the tv when you use HDMI. Worked without problem.

I have a pavilion g6-1b70us I'm trying to connect my TV with an hdmi cable.  I get a picture but no sound.  Previously, this worked without problems.  When I shoot to the top of my reading of the sound settings, the only options are speakers and the headphones.  When I shoot to the top of my devices, the Samsung TV is there, but it is described as a "generic monitor" (thinking it was weird).  I have uninstalled and reinstalled my intel graphics driver and IDC audio driver but still no sound through TV.  Also, I will mention that in sub control panel > sounds and devices there is a link to the SRS Premium Sound technology.  As you can see in the image below, the Samsung device is, but it is greyed out and cannot be selected. Can someone please?

Well in case anyone is interested I have solved the problem (only took me 12 hours to understand, lol).  Apparently, even if the Samsung TV did not appear in the audio options, you can still right click in the empty box and a toggle option will appear.

Tags: Notebooks

Similar Questions

  • Satellite P100-192: cracking sounds coming from the speaker when you use MSN

    Hello, I just bought this laptop p100-192. The speakers seem to mute (especially when there is an incoming message in MSN)
    Is anyone know why and a solution to this?

    Hello

    I studied in this forum for answers and it seems that the update of the audio driver will solve this problem.
    There is an update available (V3.11.0.51) driver that solve this crackling.

    But before installing the audio driver updated to at least the BIOS version 2.10 or higher must be installed on the laptop.
    Be careful. You must use the good BIOS and the correct procedure to update BIOS!

  • Why Oracle ManagedDataAccess (4.121.1.0) throws a System.FormatException "first chance" exception to the debugger when you use OracleCommand.BindByName (on some machines, but not others)?

    Why Oracle ManagedDataAccess (4.121.1.0) throws a System.FormatException "first chance" exception to the debugger when you use OracleCommand.BindByName (on some machines, but not others)?

    This occurs when calling a ref cursor-returning packaged function stored with OracleCommand.BindByName set to true.

    When BindByName undefined, it works as expected.

    I've only been able to recreate this problem on a machine in my control. This issue has also reported to me by a customer.

    I tried to change the locale of the system of EN - UK EN-US, but I was not aware of any change in behavior.

    Similarly, I've tried explicitly overriding the default locale of the system with the OracleGlobalization parameters, and it also had no effect.

    Please see the example below.

    ---

    Environment (default):

    Windows 7 Professional 64-bit SP1

    Visual Studio 12.0.21005.1 REL / / CAN BE SIGNIFICANT

    .NET framework 4.5.51209

    Local system: EN - UK (but also does not, EN-US).

    Oracle.ManagedDataAccess 4.121.1.0

    "< supportedRuntime version ="v4.0"sku =". NETFramework,Version=v4.5.1"/ >

    Environment (base):

    Windows 7 Professional 64-bit SP1

    Updated Visual Studio 12.0.31101.00 //SEE above 4

    .NET framework 4.5.51209

    Local system: EN - UK

    Oracle.ManagedDataAccess 4.121.1.0

    "< supportedRuntime version ="v4.0"sku =". NETFramework,Version=v4.5.1"/ >

    Call stack:

    mscorlib.dll. Unknown System.Number.StringToNumber(string str, System.Globalization.NumberStyles options, ref System.Number.NumberBuffer number, System.Globalization.NumberFormatInfo info, bool parseDecimal)
    mscorlib.dll. Unknown System.Number.ParseInt32(string s, System.Globalization.NumberStyles style, System.Globalization.NumberFormatInfo info)
    Oracle.ManagedDataAccess.dll! Oracle.ManagedDataAccess.Types.OracleRefCursor.OracleRefCursor (connection Oracle.ManagedDataAccess.Client.OracleConnection, OracleInternal.ServiceObjects.OracleRefCursorImpl refCursorImpl, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long initialLongFS, long initialLobFS, long [] scnFromExecution) unknown
    Oracle.ManagedDataAccess.dll! OracleInternal.ServiceObjects.OracleParameterImpl.ExtractRefCursorFromAccessor (Oracle.ManagedDataAccess.Client.OracleConnection conn, accessor OracleInternal.TTC.Accessors.Accessor, long fetchSize, Oracle.ManagedDataAccess.Client.PrmEnumType enumType, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long longFetchSize, long lobFetchSize, long [] scnFromExecution, int currentRow) unknown
    Oracle.ManagedDataAccess.dll! OracleInternal.ServiceObjects.OracleParameterImpl.GetRefCursorFromBytes unknown (Oracle.ManagedDataAccess.Client.OracleConnection conn, accessor OracleInternal.TTC.Accessors.Accessor, long fetchSize, Oracle.ManagedDataAccess.Client.PrmEnumType enumType, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long longFetchSize, long lobFetchSize, long [] scnFromExecution)
    Oracle.ManagedDataAccess.dll! Oracle.ManagedDataAccess.Client.OracleParameter.PostBind_RefCursor (connection Oracle.ManagedDataAccess.Client.OracleConnection, OracleInternal.TTC.Accessors.Accessor bindAccessor, long fetchSize, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long longFetchSize, long lobFetchSize, long [] scnFromExecution) unknown
    Oracle.ManagedDataAccess.dll! OracleInternal.ServiceObjects.OracleCommandImpl.ExtractAccessorValuesIntoParam (Oracle.ManagedDataAccess.Client.OracleParameterCollection paramColl, Oracle.ManagedDataAccess.Client.OracleConnection connection, string commandText, long longFetchSize, long lobFetchSize, long [] scnFromExecution) unknown
    Oracle.ManagedDataAccess.dll! Unknown Oracle.ManagedDataAccess.Client.OracleCommand.ExecuteReader(bool requery, bool fillRequest, System.Data.CommandBehavior behavior)
    Oracle.ManagedDataAccess.dll! Oracle.ManagedDataAccess.Client.OracleCommand.ExecuteReader (unknown)

    > ManagedSimpleRefCursor1.exe! NoddyConsole.Program.Command_ExecuteReader_BindByName_Fails (Line 63 c#)

    Example:

    ----

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

    using Oracle.ManagedDataAccess.Client;

    using Oracle.ManagedDataAccess.Types;

    using System.Data;

    namespace NoddyConsole

    {

    public class Program

    {

    public static int Main (string [] args)

    {

    Error int = 0;

    Errors += Command_ExecuteReader_BindByName_Fails();

    Errors += UseReturnValue_Command_ExecuteNonQuery_BindByName_Fails();

    return errors;

    }

    public static int Command_ExecuteReader_BindByName_Fails()

    {

    Error int = 0;

    Try

    {

    var conn = new OracleConnection ("UID = USER; Password = PASS; ("Data Source = / / your-host: 1521 / yours-sid");

    var conn = new OracleConnection ("user Id = UNIT620; Password = UNIT620; ("Data Source = / / ln1apidb01:1521 / fm");

    Conn. Open();

    IRRELEVANT

    OracleGlobalization og is conn. GetSessionInfo();

    og. DateFormat = "HH24:MI:SS MON-DD-YYYY";

    Conn. SetSessionInfo (og);

    var cmd is conn. CreateCommand();

    cmd.CommandType = CommandType.Text;

    BindByName. cmd = true;

    cmd.CommandText = "START: rc: = SHAUN.recreate_issue_1 (in_code = >: in_code); END; « ;

    var prm1 is cmd. CreateParameter();

    PRM1. ParameterName = "rc";

    PRM1. Direction = ParameterDirection.ReturnValue;

    PRM1. OracleDbType = OracleDbType.RefCursor;

    cmd. Parameters.Add (prm1);

    / * SHAUN.recreate_issue_1 * /.

    var prm2 is cmd. CreateParameter();

    PRM2. ParameterName = "in_code";

    PRM2. Direction = ParameterDirection.Input;

    PRM2. OracleDbType = OracleDbType.Varchar2;

    PRM2. Value = "A";

    cmd. Parameters.Add (prm2);

    /* */

    var reader is cmd. ExecuteReader(); FAILS to System.Number.StringToNumber (String str, NumberStyles options, NumberBuffer & number, NumberFormatInfo info, Boolean parseDecimal)

    /* *-/

    OracleRefCursor orc = null;

    cmd ExecuteNonQuery()); must fail here

    ORC = cmd. Parameters ["rc"]. Value as OracleRefCursor;

    If (orc is nothing)

    throws InvalidOperationException new ("Invalid return the ref cursor type");

    var = orc player. GetDataReader();

    /* */

    While (reader. Read

    {

    var values = new object [reader. FieldCount];

    drive. GetOracleValues (values);

    for (int i = 0; i < values.) Length; (++ I)

    {

    Console.WriteLine(values[i]);

    }

    }

    drive. Dispose();

    cmd. Dispose();

    Conn. Dispose();

    }

    catch (Exception ex)

    {

    Console.Error.WriteLine (ex) Message);

    Errors ++;

    }

    Finally

    {

    Return (true);

    }

    return errors;

    }

    public static int UseReturnValue_Command_ExecuteNonQuery_BindByName_Fails()

    {

    Error int = 0;

    Try

    {

    var conn = new OracleConnection ("UID = USER; Password = PASS; ("Data Source = / / your-host: 1521 / yours-sid");

    Conn. Open();

    IRRELEVANT

    OracleGlobalization og is conn. GetSessionInfo();

    og. DateFormat = "HH24:MI:SS MON-DD-YYYY";

    Conn. SetSessionInfo (og);

    var cmd is conn. CreateCommand();

    BindByName. cmd = true; // ####

    cmd.CommandText = "START: rc: = SHAUN.recreate_issue_1 (in_code = >: in_code); END; « ;

    cmd.CommandText = "START: rc: = SHAUN.recreate_issue_2; END; « ; No params, works

    var prm1 is cmd. CreateParameter();

    PRM1. ParameterName = "rc";

    PRM1. Direction = ParameterDirection.ReturnValue;

    PRM1. OracleDbType = OracleDbType.RefCursor;

    cmd. Parameters.Add (prm1);

    / * SHAUN.recreate_issue_1 * /.

    var prm2 is cmd. CreateParameter();

    PRM2. ParameterName = "in_code";

    PRM2. Direction = ParameterDirection.Input;

    PRM2. OracleDbType = OracleDbType.Varchar2;

    PRM2. Value = "A";

    cmd. Parameters.Add (prm2);

    /* */

    var reader is cmd. ExecuteReader();

    OracleRefCursor orc = null;

    HERE does NOT cmd. BindByName = true; System.FormatException first-chance exception in at System.Number.StringToNumber (String str, NumberStyles options, NumberBuffer & number, NumberFormatInfo info, Boolean parseDecimal)

    cmd ExecuteNonQuery());

    ORC = cmd. Parameters ["rc"]. Value as OracleRefCursor;

    If (orc is nothing)

    throws InvalidOperationException new ("Invalid return the ref cursor type");

    var = orc player. GetDataReader();

    While (reader. Read

    {

    var values = new object [reader. FieldCount];

    drive. GetOracleValues (values);

    for (int i = 0; i < values.) Length; (++ I)

    {

    Console.WriteLine(values[i]);

    }

    }

    drive. Dispose();

    ORC. Dispose();

    cmd. Dispose();

    Conn. Dispose();

    }

    catch (Exception ex)

    {

    Console.Error.WriteLine (ex) Message);

    Errors ++;

    }

    Finally

    {

    Return (true);

    }

    return errors;

    }

    }

    }

    ---

    create or replace package THAT SHAUN is

    type ref_cur_type is ref cursor;

    function recreate_issue_1)

    in_code varchar2: = null

    ) return ref_cur_type;

    end SHAUN;

    /

    create or replace package body what SHAUN

    -TTS000233

    function recreate_issue_1)

    in_code varchar2: = null

    ) return ref_cur_type is ref_cur ref_cur_type;

    Start

    Open the ref_cur for

    Select UO.object_name from user_objects UO;

    Return ref_cur;

    end recreate_issue_1;

    end SHAUN;

    /

    ---

    Thanks a lot to qualify again for me Alex.  I'll try upgrading to the latest version of the provider.

    The difference in behavior between the two hosts was found to be reduced to differences in configuration VS.

    Checking 'Just my code' prevents the first chance thrown in the debugger exception. As in fact, the exception is handled in the provider, it is enough for me.

  • No picture on the TV when you use S-Video on the Satellite A100-819

    Hello

    I'm trying to connect my laptop A100-819 to a TV using the S-video output on the laptop and the input S-Video on the TV, but I can't!
    I'm only a black screen that flashes white sometimes when I press Fn + F5 or when I try to clone the screen in the settings of my GeForce (nView).
    The laptop can't find the TV when you try to detect it in nView.

    One of my friends has already used the cable, so there is no problem.
    My TV is also defined for S-video.
    I installed the latest driver for my GeForce Go 7600 and my BIOS.

    Does anyone have a solution?
    What I have to change something in the BIOS?
    There is a person with the same specifications (or with a GeForce Go) who has already try the same thing? And did you?

    Greetings,
    Philippe

    Hello

    I tested the s-video output on this laptop and everything worked properly.
    I really put t know why it doesn't work on your laptop.

    Despite the fact that the s-video cable worked on computer s friend, you should test another because there are various cables s-video with different ends such as SCART connector or only s-video and two taken RCA for sound.

    In addition, I would recommend test this on laptop retrieved fresh.

    In addition, you could take the laptop to your friend and try it on another TV.

  • No response from the server when you try to publish the page.

    My site was working fine last night but this morning that it does not load and im getting an error "no response from the server" when I try to publish it.

    www.joshuasisneyphotography.com

    I don't have much experience with that kind of stuff. Please help me. I don't know what I have to do. My internet connection seems to work very well and like I said the site was fine a few hours ago.

    Hello

    Please try to delete the temporary files for Muse and then try to publish the site again.

    Here's a post on the forum related on how to clear temporary files: http://forums.adobe.com/message/5086018#5086018

    Hope this helps you publish the site.

    Rgeards,

    Fox

  • Satellite A60: Sound quality poor microphone when you use the USB phone

    I have problems with the microphone/recording quality on my A60 including but not limited to situations when you use a USB phone. Talk to the USB phone produces a lot of static when it is used with the A60, which is not the case when I use another laptop.
    The two laptops have the same VOIP software and "simplyphone.

    Any ideas what could be the problem? Drivers?

    Toshiba support suggests to see if a system restore will improve things, but I am reluctant to go there for a questionable result.

    Hello

    I don t think that the driver update will help you. The operating system uses the simple common Microsoft USB drivers. I think we should get the problem somewhere else.

    You can try to disable the power save option in-USB hub-> properties > Device Manager. I noticed that if energy saving is enabled on ports USB some external devices could not work with maximum efficiency.
    In addition, you should disconnect other USB devices during the test the USB microphone.
    I think that it of not impossible that some external USB devices might have a negative influence on the use of a USB microphone.

    PS: I found a site interesting on tests of micro USB
    http://www.voicerecognition.com.au/dragon_microphone_review.htm

  • I want to use the recovery disc for re - install my pavilion dv6, but cannot boot from the recovery disc?

    Now my system Windows 7 Home premium canbe accessed, but with a lot of problems. That's why I want to reinstall it. I burned my own recovery (totally 4 disks) successfully disks. I insert the first disc of recovery CD-rom and restart my laptop, but it can not recognized but in win 7 automatically. could you tell me how to use my recovery disks to reinstall the system win 7 when that is not totally broken?

    Hello

    Probably go to BIOS and configuration of the machine to boot from the CD/DVD ROM. Please follow the instructions from HP:

    http://support.HP.com/us-en/document/c00364979

    Kind regards

  • No sound from the headset when using hdmi

    I use the HDMI for a big screen, but with this use, the headphone is turned off. I need to be able to use the HDMI for the monitor and the headphone jack for sound.

    If you have no sound with the plug HDMI is connected, it means that your current sound settings are set for audio must be set to the HDMI output. Go to sound settings and pass parameters of HDMI output for speakers.

    Open Sound by clicking on the Start button, and then click Control Panel. In the search box, type sound, and then click sound

    In the Audio window, select the playback tab
    Replace the default value with the green mark check speakers with HDMI connected.

  • No sound from the Clip when it is connected to the car charger and car s in the

    I just got a car charger for my 8 GB Clip. I have the Clip connected to the connector of the car aux in, and it plays beautifully this way.

    However, when I connect the car charger, which is a fact by Motorola for a mobile phone, the sound of the Clip completely stops.  There is no sound at all.

    Even if I barely touch the metal of the car charger USB plug to the USB port of the clamp, the sound cuts.

    A ground loop isolator would correct this problem? The comments that I have read of these say all that they helped with motor and alternator noise, but I don't have that.  I have no sound at all, even if the Clip is loaded and he continues to play according to the display of the item.

    I checked the car charger works well because I have a box of jump with a record of 12 VDC (just like in the car).  The cool Clip and plays with a helmet with the Motorola car charger in this configuration very well.

    Any ideas what is wrong and how to fix it?

    Thanks in advance.

    Just for this follow-up, the ground loop isolator completely fixed the problem I had with the sound cutting on my video in the car.

    The one I chose was the PAC SNI-1/3.5 RCA noise filter.  He goes online with 3.5 mm cable to the and has a socket on one end and a plug on the other.  It would have been cool if he had just had two male connectors, because then I could have plugged one side in the Clip and the other in the input of the car Jack.

    There is no significant deterioration in the sound, and now I can load the Clip while listening.

  • Microsoft LifeChat LX 3000 stops the sound from the speakers when connected

    Hello

    I bought a USB Microsoft LifeChat LX 3000 headset, and when it is plugged into my USB port, no sound is heard from the speakers.

    When I disconect the speakers rund LX 3000 perfectly.

    Someone knows how to fix this problem, please

    I wanted to check if Microsoft LifeChat LX 3000 has all the entries in this section and if it has settings to enable or disable speakers when it is installed.  It is obviously the installer to work this way by default--I know not how to change the value by default if there is no entry in the audio section.

    Try to download updated drivers for your sound card - she is in the speakers and contolling the LifeChat for an upgrade can provide options that are not currently available and you should be able to control if both can work at the same time.  While you're there, download and reinstall the updated drivers LifeChat as well.

    Here is a link to the Microsoft Support - I don't know if it will be free or not (I can't go past the area enter the product id field). https://support.microsoft.com/oas/default.aspx?gprid=12368&st=1&wfxredirect=1.  If free (I'm not sure I want to pay for support) and then explain the problem and they may be able to tell an easy solution that we have lost.

    Here is a link to the product documentation that can explain what is happening and why.  Maybe it's just the way they are designed to work. http://www.microsoft.com/hardware/documentation/default.aspx?type=LifeChat&sku=JUG-00001.

    I hope this helps.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • My co-editor in Chief is the CC 2015 but computer science from the University, I am using is stuck with CC 2014. Help!

    Hey Adobe Community People.

    My co-editor is CC 2015 (working in another State), but the University computer I use is stuck with CC 2014. I checked with our IT Department and they say that the school license is not set to renew until August, so we're stuck with this version until then. Am I supposed to twiddle my thumbs for the next two months? My editor and I share projects every day so this is a huge setback.

    Is there is workaround for this backward incompatibility dilemma? I don't know about XML, but that it only works with sequences, or can it many projects? Must reinstall everything 2014 and just redo the whole of his work?

    I buy my own darn computer and pay for 2015 for CC?

    These ^ ^ ^ are all the solutions... but I wonder if there is a simpler, which don't make me to re-do work or pay for the Crack of Adobe (I mean cloud creative).

    Also, Adobe, you are makes it very difficult for me to contact support by phone. I am disappointed in your absence on the customer service... it is also just a rant on my frustration with the incompatibility of these annual updates of the CC.

    Help!

    Sincerely,

    Frustrated. (My real name is Brian... and I'm not usually this unpleasant)

    This isn't his right - the whole concept of the subscription model is up-to-date new revisions are released.  You should talk to Adobe - I've provided contact information in my answer.

  • TouchSmart ENVY 17-j140us: no sound for tv when you use HDMI to the computer

    I just put my 10 year anniversary build Windows Update specifications 1607 an older version (build 14xx) and I can't get sound in my TV connected via HDMI. I installed the latest driver from the HP Web site. Audio driver does not work well. Here's a screenshot of my device manager:

    Thank you for your support

    Hello:

    See if it works...

    Since the graphic driver works, let's not trifle with the actual graphic driver.

    We need to install the Intel HD audio driver, which is why the audio does not work on the HDMI port and it is the HD audio device problem you see list.

    First download and install this free utility file, as the file 2nd on page is 64-bit.

    http://www.7-zip.org/

    After installing 7 - Zip, download and save but do not run the Intel graphics driver from the support page of your laptop.

    This package provides the driver that allows graphics Intel high definition (HD) in the notebook models that are running an operating system supported. If the video output high-definition multimedia interface (HDMI) is supported, this package also installs the HDMI Audio Driver.

    File name: sp72370.exe

    Once you have saved the graphic driver file, right-click on it and select 7 - Zip from the list of items.

    Have 7-Zip extract of: and let it extract the driver in its file name (sp72370).

    After that 7-Zip does its thing, go to Device Manager and click on the audio device problem HD in your screenshot.

    Click on the driver tab, click on set to update driver.

    Select her browse my computer for driver software option and find the driver 7-Zip created folder.

    Make sure that the include subfolders is selected and the driver should install.

    Then restart the PC, and you should get audio and video HDMI port.

  • Firefox loads, icon on the bar of tasks but when you click the slide of graphics off to the right, but does not fill the screen &amp; when you right-click again, falls back into the icon

    Firefox, Thunderbird and Quicken were active when I loadad & ran a slot machine game. When I left the game & click on icon to return to Firefox full screen, I could see the flash of the image to the right of my screen and disappear. When I clicked on the icon in the taskbar, the reverse happened - the image flashed from the right down to the icon. When I hover the mouse over the icon, the open screens appear with the red X to close, but the same thing happens when I click on this box. Two other programs that have been opened, while the game was active work correctly, only Firefox has been affected. I can't open the program to access one of the menu items that I can't get the image of the screen on the monitor. I did uninstall and reinstall a freshly downloaded copy, I had to use IE, as I am now) but with the same results when I run. I did chose to save my settings, so if something has changed here so maybe that's the problem.

    Hello

    Try Firefox Safe mode to see if the problem goes away. Safe mode is a troubleshooting mode, which disables most of the modules.

    (If you use it, switch to the default theme).

    • You can open Firefox 4.0 + in Safe Mode holding the key SHIFT key when you open the desktop Firefox or shortcut in the start menu.
    • Or open the Help menu and click on the restart with the disabled... modules menu item while Firefox is running.

    Once you get the pop-up, simply select "" boot mode safe. "

    If the issue is not present in Firefox Safe Mode, your problem is probably caused by an extension, and you need to understand that one. To do this, please follow article Troubleshooting extensions, themes and problems of hardware acceleration to resolve common Firefox problems .

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before you open Firefox for normal use again.

    When find you what is causing your problems, please let us know. It might help others who have the same problem.

    Thank you.

  • Meta Refresh does not refresh the menu drop-down select options but don't check the boxes... IE works without error (Max FF issue)

    Drop-down list not update even if the html code was changed using the meta refresh tag. The problem has been resolved by deleting the name of the list in the html code in the part of my page refresh. It's a php script, so I can do but with html directly, I don't see a way to solve the problem for others finding this a problem, FF should not do this.

    Example:

    < select name = "page_header_color" >

                 <option >blue</option>
               <option >green</option>
               <option selected >red</option>
               <option >black</option>
               <option >silver</option>
             </select>
    

    whether refresh properly changed to this:

    < select name = "" >

                 <option >-------</option>
             </select>
    

    the script modifies the page preceding between the discount and the 'real' html that resolves this problem, otherwise FF does not update the drop-down lists at all, but it is updated check boxes and everything.

    You must reload and bypass the cache to reset the choices made through selection and from the drop-down list boxes.

    Otherwise the selection are reloaded from the cache, so a meta reload does not work either (can work if you reset the through an onload event).

  • No sound on the TV when connected over HDMI

    I have HP G62 laptop. I seem to have lost the audio HDMI when I connect to the TV. Help, please! Have checked the Audio on the control panel and seem to only Realtex Hi Def speakers have implemented.

    Hi Tony,.

    Download the following installers and Save the in your downloads folder - you can rename each of them for easy identification.

    Driver Chipset.

    Installer of AMD.

    Next, open Device Manager, open sound, video and game controllers, right click on the Realtek HD Audio device and select uninstall - do not delete if requested driver.  Once this done, do the same for the ATI HD Audio device.

    Now go to your download folder, click with the right button on the setup of the Chipset and select "run as Administrator" to launch the installation - once this complete, are not reboot the laptop, but right-click on the setup of the AMD and again, do a right click and select "run as Administrator" to launch the installation.

    When it finished, restart the computer and let Windows take over completely for a few minutes.

    Connecting your laptop to the TV via HDMI, then right click to the speaker icon in the taskbar, select playback devices - hopefully, you should now see an entry for ATI HDMI Output; left-click this time just to highlight and then right-click and select "set as default device".

    I hope you now audio through television.

    Kind regards

    DP - K

Maybe you are looking for