Audio not working / Video flashes to black every ~5 seconds

Hi. For some reason, when we turn on our TV as of late, every channel is having this issue where upon turning on, the video will flash to black every 5 seconds or so, and there is no audio. The only thing that solves the problem is unplugging and replugging in the STB (Motorola QIP7232-2). 
I've replaced the HDMI cable with a new one. No dice. 
Netflix via the X360 works without a hitch, so it's not the TV. 
Scanning for repair/errors on the STB comes back with no issues detected.
Any reason why this is happening, and is anyone else experiencing this? 

Ed_Krayer wrote:
I am having the same issue. Unplugging and repowering on resolve the issue, also disconnecting and reconnecting the HDMI cable fixes it. Output from the 7232 goes to a Sony Google TV device. I also have DirecTV and never had this issue. Seems like an HDMI switching problem. Is there an easier way to reset the 7232 than just unplugging it? Or - better yet - what's the cause and how do I resolve?
Here are some troubleshooting steps you can try on your own for the problematic STB.
From your FiOS TV remote, go to:
Menu -- Customer Support -- In Home Agent -- Reboot STB
Menu -- Customer Support -- In Home Agent -- Set Top Box Auto-Correction

Similar Messages

  • Youtube video not working its blank and black every browser has same problem and i have installed new flash player but same problem????help me

    I don't have any real players. nothing shows when open videos it is black no error messages its black. i have clear the cookies. but no answer?????????????

    You can check for problems with current Flash plugin versions and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in Flash 11.3 and later
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting
    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://hacks.mozilla.org/2010/09/hardware-acceleration/

  • Audio not working.video is working

    im using ichat on a macook. i went to video chat with someone, that i usually video chat with, and the video part comes up but each of us cant hear one another. i then went to video chat with someone else with a macbook, and i get full use of audio and video. what is wrong??

    See: http://discussions.apple.com/thread.jspa?threadID=614373&tstart=0

  • Iphone 5.1 update messed up sound. Audio not working in youtube, music and video apps. Phone is not muted! nor is volume turned down

    Iphone 5.1 update messed up sound. Audio not working in youtube, music and video apps. Phone is not muted! nor is volume turned down

    Basics from the User Guide are restart, reset, restore from backup, restore as NEW.  Unless you've tried ALL of these, you're not done troubleshooting.

  • NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug

    Title
    NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug or feature
    Description
    Problem Description:
    NetStream.send can not send data to peerstreams when using with cirrus. Conflict with documents.
    Sorry for tag the build as 11.0.1.3 while the bug is actually on 11.2 beta since the bug report system didn't have 11.2 beta yet.
    If you are not responsible for 11.2 beta bug fix, please help a hand to handle this bug to 11.2 team.
    This bug is "killing" to your application, so we really appreciate your help. Thanks.
    ==Publisher==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, NetStream.DIRECT_CONNECTIONS);
    ns.publish("sendtest");
    ...//after connection success.
    ns.send("clientfunction", "ok"); // this line cannot reach subscribers. even if subscribers have client object correctly.
    ==Subscriber==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, cirrusid);
    var client:Object = new Object();
    client.clientfunction = clientfunction; // target function
    ns.client = client;
    ns.play("sendtest");
    Steps to Reproduce:
    1. compile the code in the attachment to SendTestExample.swf (not be able to paste it here)
    2. run it under flash player 11.2.202.19 beta
    3. run it under flash player 11
    Actual Result:
    HeartBeat is:
    Start HeartBeat:
    send hello
    send hello
    send hello
    which means NetStream.send was not able to call "clientfunction" as expected.
    Expected Result:
    Start HeartBeat:
    send hello
    in client function: hello
    send hello
    in client function: hello
    send hello
    in client function: hello
    which can call into the clientfunction as flash player 11 did.
    Any Workarounds:
    I can not find it out since it's an api level bug. But this can be very important for lots of applications which rely on send to do rpc.
    Test Configuration
    IE8, Firefox under Windows 7
    Also have problem under Windows XP (but not well tested on this platform)
    App Language(s)
    ALL
    OS Language(s)
    ALL
    Platform(s)
    Windows 7
    Browser(s)
    Internet Explorer 8.0
    ==Attachment==
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.NetStatusEvent;
        import flash.events.TimerEvent;
        import flash.media.Video;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.text.TextField;
        import flash.utils.Timer;
        import flash.utils.setTimeout;
        public class SendTestExample extends Sprite
            public static var statusArea:TextField;
            var ncServer:NetConnection = new NetConnection();
            var nsServer:NetStream;
            var ncClient:NetConnection = new NetConnection();
            var nsClient:NetStream;
            var timer:Timer = new Timer(1000);
            public function SendTestExample() {
                ncServer.addEventListener("netStatus", onNCStatusServer);
                ncServer.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                statusArea = new TextField();
                status("status");
                statusArea.x = 0;
                statusArea.y = 0;
                statusArea.border = true;
                statusArea.width = 200;
                statusArea.height = 350;
                addChild(statusArea);
            function onNCStatusServer(event:NetStatusEvent):void {
                status("Step 1:");
                status("server: " + event.info.code);
                status("id: " + ncServer.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsServer = new NetStream(ncServer, NetStream.DIRECT_CONNECTIONS);
                        nsServer.addEventListener(NetStatusEvent.NET_STATUS, onNSStatusServer);
                        nsServer.publish("sendtest");
                        ncServer.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusServer);
                        ncClient.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                        ncClient.addEventListener("netStatus", onNCStatusClient);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            function onNCStatusClient(event:NetStatusEvent):void {
                status("Step 2:");
                status("client: " + event.info.code);
                status("id: " + ncClient.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsClient = new NetStream(ncClient, ncServer.nearID);
                        var c:Object = new Object();
                        c["clientfunction"] = clientfunction;
                        nsClient.client = c;
                        nsClient.play("sendtest");
                        ncClient.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusClient);
                        //setTimeout(sendHello, 5000);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            protected function onNSStatusServer(event:NetStatusEvent):void {
                status("nsserver: " + event.info.code);
                if (event.info.code == "NetStream.Play.Start") {
                    status("Start HeartBeat:");
                    this.timer.addEventListener(TimerEvent.TIMER, function (e:Event):void {
                        sendHello();
                    this.timer.start();
            protected function sendHello():void {
                status("send hello");
                nsServer.send("clientfunction", "hello");
            protected function status(msg:String):void
                statusArea.appendText(msg + "\n");
                trace("ScriptDebug: " + msg);
            protected function clientfunction(event:Object):void {
                status("in client function: " + event);

    Thanks for reporting. I can reproduce the bug in house. We will investigate.
    Calise

  • My ipad streaming purchased video from itunes stops every few seconds.  does not happen with any other streaming video service.

    my ipad streaming purchased video from itunes stops every few seconds.  This does not happen with any other streaming video service.  I have restarted and rebooted already. 

    I've tried both things, but video still stutters.. Have also tried removing profile, and complete reinstall of firefox.
    I'm on 24 Mbit cable and the only user atm. IE and Chrome seems to work without stuttering.
    I've having this stuttering every ~5th second, like a small "1/4 sec buffering".

  • Audio not working on channel 5 and 7,, okay on all others????

    audio  not working on channel 5 and 7,, okay on all others????

    dalharris wrote:
    audio  not working on channel 5 and 7,, okay on all others????
    Without knowing all of the specifics in your situation, you may want to try these options:
    - If you have a DTA, and your remote control has a LANG button on it, press it. 
    -  If you have an HD or SD full cable box:
    Most low or no audio issues can be corrected by setting the Optimal Stereo output of the cable box. Here are the steps: Press the Menu button twice on your remote control. Select Setup. Select Audio Setup Under the Optimal Stereo setting, choose "Select to Optimize" and press OK/Select on the remote control
    - The audio settings on your cable box may have accidentally been changed:
    Press the Menu button twice on the Comcast Universal Remote Control. A new screen below will appear, with the top-left option automatically selected.
    Use the down-arrow key (above the Info button) to navigate to Setup and press OK/Select (the center key on the remote control in the middle of the 4 arrow/directional buttons).
    Use the down-arrow key (above the Info button) to navigate to Audio setup and press OK/Select.
    The Default Audio Track will default to the first option–Channel default–which which is always the channel’s main audio track (unless it was previously changed).
    Press the right-arrow navigation key to change the audio track. Changing this selection will instantly change the audio.
    1. Press once for English
    2. Press twice for Spanish (Español) OR to activate Video Description (DVS)
    3. Press three times for French (Français) 4. Press four times for Portuguese (Portugues).
    5. Then press the Exit button (above the Volume button) to resume program viewing
    Please note: These audio options can only be heard if the program provider or cable channel is providing that additional audio option.
    - If the above does not help, look at the remote control for your TV set (not your cable box) as the TVs language settings may have been accidentally changed (sometimes labeled as MTS or SAP on the remote or via your TVs settings menu).

  • Sound/audio not work

    sound/audio not work
    Model- Compaq M2000.
    S/N; CNF550117L,
    P/N-EE462Pa#UUF
    M2235

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                              

  • TS3276 I can receive emails, but I cannot send emails. This just started happening. I have an iPhone and I can send emails from my phone fine. It's just not working on my Macbook. Every time I try to send an email it goes straight to my outbox. Can anyone

    I can receive emails, but I cannot send emails. This just started happening. I have an iPhone and I can send emails from my phone fine. It's just not working on my Macbook. Every time I try to send an email it goes straight to my outbox. Can anyone help?

    Thank you for heading me in the right direction.  I reset my Mail account for Outgoing Mail Server to outbound.att.net:(customer ID)@att.net (instead of smtp.att.yahoo.com, per Apple's online troubleshooting information).   I'm not sure what "(Offline)" means when it appears at the end of my Outgoing Mail Server (SMTP)??  In the Advanced box I clicked on "Use custom port:  465" and checked "Use Secure Sockets Layer."  Authentication:  Password; I have correct User Name and Password put in.  After doing all this, when I try to send emails again today, they go directly to the Outbox and sit there. 
    What's curious is that my first sent email this morning did go out using the Outgoing Mail Server, smtp.att.yahoo.com: (customer ID)@att.net(Offline) but subsequent emails I tried to send with this server were rejected with the message:  "Cannot send message using the server smtp.att.yahoo.com (etc.).  The SMTP server doesn't support TLS(SSL) on port 587.  Verify your account settings and try again."  That's when I tried resetting my Outgoing Mail Server to outbound.att.net (etc.), as mentioned above, and was unsuccessful in sending out any further emails.  I guess my next step is to contact my email service provider, AT&T, and see if they can help me.  Thanks, again, for taking the time to respond and for giving me your input!  Much appreciated!

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • GETURL  is not working in flash player 9.0.124.0.

    Dear Friends,
    My swf and my html are in different domain so i got a issue
    in GETURL function , It is not working in flash player 9.0.124.0.
    in IE browser so that i add one parameter like allowScriptAccess
    =always then its working fine.but my question is what will happed
    if they will introduce any new flash version in future please tell
    me what is the permanent solution for this issue.
    Thanks

    There is no way to know what will change in the future. This
    is the solution that works now. It will probably remain in place
    for the reasonable future.

  • AIR SDK 17 (BETA) is not working with Flash CS6

    Hi,
    The latest AIR SDK 17 is not working with Flash CS6.
    I tried to publish and install an iOS app to my connected device via USB but I always get an error "Check if iTunes is installed".
    The latest stable AIR SDK 16 is working fine, and yes, iTunes is installed on my PC.
    DETAILS:
    - Flash CS6
    - AIR SDK 17
    - System: Windows 8,1
    - iPodTouch with iOS 8.1
    REPRODUCE:
    Open new AIR iOS template and publish/install it to a USB connected iOS 8.1 device.
    Anyone else got that error?

    I was getting this intermittently.   Not a super problem.   A remove and install in iTunes gets it loaded (after you tell ITunes where it is).

  • The screen on my iPhone 4s is not working it's just black & won't reboot?

    The screen on my iPhone 4s is not working it's just black & won't reboot?

    Try the suggestions here to see if they resolve your problem:
    http://support.apple.com/kb/ts1559
    If these don't work you probably have a hardware problem. Visit an Apple store for an evaluation or contact Apple Support.

  • Ac3 dts audio not working in my iphone but it works in my friends samsung mobile?pls help me.

    Iam using o player... Ac3 dts audio not working msg showing

    Settings > General > Reset > Reset Network Settings
    Contact the carrier.

  • HT201210 AUDIO NOT WORKING PROPERLY AFTER INSTALLED IOS7

    After installed ios 7
    photos not able to see fully
    audio not working properly.... [no treble, no depth in sound, very low soung even the volume is full]
    get strucks while playing games

    This board is full of people that are update crazy...
    even when they have perfectly good working systems.
    i know i thought well it's just a security update not a major update.
    Best advice... whenever updating the OS, unplug all
    firewire devices.
    will take note of that from now on.
    Was this auto-update? Try downloading the file and
    running the update again with all firewire devices
    unplugged.
    While the 828 is disconnected perform the factory
    reset
    again.
    Disconnect the firewire cable from the 828mkII
    -Press the Setup knob
    -Turn the Setup knob all the way to the right
    -Press the Select knob
    -Press the Value knob
    -Power off the interface and plug the firewire cable
    back
    in
    -Power the interface back on
    i have the original 828 not mark 2, so no reset i know of, just power on off.
    After the Mac updates... reboot and plugin the 828,
    see if that doesn't get you going.
    pancenter-
    cheers pancenter, i'll give it a whirl updating without the interface plugged in. thanks for all your help.

Maybe you are looking for

  • Can no longer extract photos from my iphone to my computer

    For the first time, I've been unable to extract any of the photos from my iphone (original) to transfer to my computer. I think I've tried almost everything... including resetting all my settings and going directly to "my computer" and trying to acce

  • Installing OS X on a USB hard drive?

    Hi all, Is it possible to install OS X on a USB drive? I am attempting to do so with a drive hooked up to an iBook, but not having any luck - the installer says it cannot be installed to the drive. I know that this is possible with Firewire, but what

  • Last part of long texts are not spelling checked, why?

    I use FF as spelling checker for long HTML files. It seems that after about 10 screen fulls the spelling checker stops working (which I notice from HTML tags not being flagged after 10 pages or so).

  • Implementing F4 functionality

    Hi All, For one of the fields on my webdynpro screen, I have to attach F4 values from the backend system. How do I do this ? Thanks, Tom

  • Webi throwing error MDDataSetBW.GetCellData

    Hi, I am creating a webi based on Bex Query. In Bex Query, I have 6 characteristics , 4 Key figures , all 6 char in Default values block too and 1 charcteristic (Plant) in Characterisic restriction block which is authorizing variable. 1) When i am cr