How to stop video autoplay in safari 9.0?

When I visit some Web sites such as CNN, video automatically starts playing whenever the page is loaded. I tried to disable the flash and silverlight, but that did not stop the AutoPlay.  Any guidance is appreciated.

I think it is the same thing as Yosemite found here: link to this post

For OS X Yosemite 10.10 set the following in the Safari preferences:

1. on the Advanced tab, set "Stop plug-ins to save energy.

2. on the Security tab, set "allow the Plug-ins" by Internet Plug-ins and then click on «Site settings Web...» "for her.

3. find the media type you want to stop auto play in the left columns.

Most non Flash videos (mp4/h264/HTML5 video) will be 'QuickTime '.

4. the value "when visiting other Web sites" Ask to click to start or block for disabling permanent.

5. click on 'done '.

Safari will play the video (s) on a page for a short period before stopping to save energy and the noise will stop.

By clicking on the play button video will start the video and the audio again for viewing whenever you want.

Tags: Mac OS & System Software

Similar Questions

  • How to stop pop up on safari

    When the im function using safari I have problem of pop-up windows. How can I stop to cancel their

    Looks like you have Adware on your computer.  You have two options to get rid of:

    1. Malwarebytes Anti-Malware for Mac allows you to remove it (it was developed by a trusted and respected here contributor) - https://www.malwarebytes.org/antimalware/mac/
    2. Remove the adware manually by following the advice in the support article linked - http://support.apple.com/en-us/HT203987

    Also, go to the preferences of Safari-> Extensions and uninstall any that you forgot to install.  After that, go to Safari preferences-> general, then reset your home page, then go to Safari preferences-> search and reset your preferred search engine.  Also, make sure of course in Safari preferences-> privacy and make sure that 'Block pop-up windows' is selected.

  • How to stop automatic playback of videos?

    June 2013: videos on the sites Web begin to play without my permission, how to stop this?

    What I tried:
    I uninstalled Adobe Flash (turn off the Flash module did not work), existing modules 'stop' is more work according to the comments, I tried solution described in "How can I stop videos on websites AutoPlay? (Type in the address bar: subject: config and search for: plugins.click_to_play Double click and it will have the value true)-don't stop no videos to play either. Sent your comments for FireFox on the issue.

    From what I had read in the comments, it's not just about Flash: YouTube disabled add-ons and looking for something that can play videos in Windows, including using HTML5. Have no information how Web sites do.

    How do I stop this?
    Thank you.

    https://addons.Mozilla.org/en-us/Firefox/addon/stop-tube/

  • Auto video game. How to stop

    1. in this automatic script of video playback. How to stop this.
    2. video AutoPlay. Suppose that I click on play/pause, then video showing everything first. What is the problem in the script?

    Here is the solution of my file for the game of the break:

    import flash.net.NetConnection;
    to import flash.net.NetStream;
    import flash.media.Video;
    import flash.utils.Timer;
    import flash.net.SharedObject;
    import flash.display.Stage;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.events.Event;
    import flash.events.MouseEvent;

    stage.scaleMode = StageScaleMode.NO_SCALE;
    internship. Align = StageAlign.TOP_LEFT;

    # CONSTANTS
    const BUFFER_TIME:Number = 8;
    const SMOOTHING: Boolean = true;
    const DEFAULT_VOLUME:Number = 0.6;
    const DISPLAY_TIMER_UPDATE_DELAY:int = 10;

    # Variables

    var videoURL:String = "cuepoints.flv";
    var videoURL:String = "video_1;
    the var connection: NetConnection;
    var stream: NetStream;
    Video: video of var = new Video();
    var intLastVolume:Number = DEFAULT_VOLUME;
    var shoVideoPlayerSettings:SharedObject = SharedObject.getLocal ("playerSettings");
    var bolLoaded:Boolean = false;
    var bolVolumeScrub:Boolean = false;
    var bolProgressScrub:Boolean = false;
    var objInfo:Object;
    var tmrDisplay:Timer;

    hide buttons
    mcVideoControls.btnPlay.visible = true;
    mcVideoControls.btnUnmute.visible = false;
    mcVideoControls.btnPause.visible = false;
    mcVideoControls.btnFullscreenOff.visible = false;
       
    Set the width of filling of progress/preload on 1
    mcVideoControls.mcProgressFill.mcFillRed.width = 1;
    mcVideoControls.mcProgressFill.mcFillGrey.width = 1;
       
    Label SETTING date and time
    mcVideoControls.lblTimeDuration.htmlText = "00:00 / 00:00";

    Add the global event listener when the mouse is released
    stage.addEventListener (MouseEvent.MOUSE_UP, mouseReleased);

    Add fullscreen earphone
    stage.addEventListener (FullScreenEvent.FULL_SCREEN, onFullscreen);
       
    Add event listeners to the buttons
    mcVideoControls.btnPause.addEventListener (MouseEvent.CLICK, pauseClicked);
    mcVideoControls.btnPlay.addEventListener (MouseEvent.CLICK, playClicked);
    mcVideoControls.btnStop.addEventListener (MouseEvent.CLICK, stopClicked);
    mcVideoControls.btnMute.addEventListener (MouseEvent.CLICK, muteClicked);
    mcVideoControls.btnUnmute.addEventListener (MouseEvent.CLICK, unmuteClicked);
    mcVideoControls.btnFullscreenOn.addEventListener (MouseEvent.CLICK, fullscreenOnClicked);
    mcVideoControls.btnFullscreenOff.addEventListener (MouseEvent.CLICK, fullscreenOffClicked);
               
    mcVideoControls.btnVolumeBar.addEventListener (MouseEvent.MOUSE_DOWN, volumeScrubberClicked);
    mcVideoControls.mcVolumeScrubber.btnVolumeScrubber.addEventListener (MouseEvent.MOUSE_DOWN, volumeScrubberClicked);
    mcVideoControls.btnProgressBar.addEventListener (MouseEvent.MOUSE_DOWN, progressScrubberClicked);
    mcVideoControls.mcProgressScrubber.btnProgressScrubber.addEventListener (MouseEvent.MOUSE_, progressScrubberClicked);

    tmrDisplay = new Timer (DISPLAY_TIMER_UPDATE_DELAY);
    tmrDisplay.addEventListener (TimerEvent.TIMER, updateDisplay);
       
    stage.addEventListener (Event.RESIZE, resizeHandler)

    //---------------------------------------------------------------------------------------- ------------------------------------------

    NetConnectionExample();
    function NetConnectionExample()
    {
    connection = new NetConnection();
    connection.addEventListener (NetStatusEvent.NET_STATUS, netStatusHandler);
    connection.addEventListener (SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
    Connection.Connect (null);
    }

    function netStatusHandler(event:NetStatusEvent):void
    {
    Switch (event.info.code)
    {
    case "NetConnection.Connect.Success":
                connectStream();
    break;
    case "NetStream.Play.StreamNotFound":
    trace ("stream not found:" + videoURL);
    break;
    case "NetStream.Play.Stop":
    stopVideoPlayer();
    break;
    }
    }

    function securityErrorHandler(event:SecurityErrorEvent):void
    {
    trace ("securityErrorHandler:" + event);
    }

    function connectStream (): void
    {
    Stream = new NetStream (connection);
    stream.addEventListener (NetStatusEvent.NET_STATUS, netStatusHandler);
    Stream.client = this;
    stream.bufferTime = BUFFER_TIME;
       
    vidDisplay.attachNetStream (stream);
       Stream.Play (videoURL);
    addChild (vidDisplay);
    vidDisplay.smoothing = SMOOTHING;
    }

    # STEP SETTINGS
    internship. Align = StageAlign.TOP_LEFT;
    stage.scaleMode = StageScaleMode.NO_SCALE;
       
    //-------------------------------------------
       
    var tmpVolume:Number = DEFAULT_VOLUME;
    If (shoVideoPlayerSettings.data.playerVolume! = undefined) {}
    tmpVolume = shoVideoPlayerSettings.data.playerVolume;
    intLastVolume = tmpVolume;
    }

    mcVideoControls.mcVolumeScrubber.x = (53 * tmpVolume) + 353;
    mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 405 + 53;
    setVolume (tmpVolume);
    //}

    mcplay.mcbtn.addEventListener (MouseEvent.CLICK, playfn);
    function playfn(e:MouseEvent):void {}
    Stream.Play (videoURL);
    mcVideoControls.btnPause.visible = true;
    mcVideoControls.btnPlay.visible = false;
    bolLoaded = true;
    }

    function playClicked(e:MouseEvent):void
    {
    if(!bolLoaded)
    {
    Stream.Play (videoURL);
    bolLoaded = true;
    }
    on the other
    {
    Stream.Resume ();
    }
       
    vidDisplay.visible = true;
       
    mcVideoControls.btnPause.visible = true;
    mcVideoControls.btnPlay.visible = false;
    }

    function pauseClicked(e:MouseEvent):void {}
    Stream.pause ();
       
    mcVideoControls.btnPause.visible = false;
    mcVideoControls.btnPlay.visible = true;
    }

    function stopClicked(e:MouseEvent):void {}
    stopVideoPlayer();
    }

    function muteClicked(e:MouseEvent):void {}
    setVolume (0);
       
    mcVideoControls.mcVolumeScrubber.x = 353;
    mcVideoControls.mcVolumeFill.mcFillRed.width = 1;
    }

    function unmuteClicked(e:MouseEvent):void {}
    var tmpVolume:Number = intLastVolume == 0? DEFAULT_VOLUME: intLastVolume
    setVolume (tmpVolume);
       
    mcVideoControls.mcVolumeScrubber.x = (53 * tmpVolume) + 354;
    mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 405 + 53;
    }

    function volumeScrubberClicked(e:MouseEvent):void {}
    bolVolumeScrub = true;
       
    mcVideoControls.mcVolumeScrubber.startDrag (true, new Rectangle (354, 19, 53, 0));
    }

    function progressScrubberClicked(e:MouseEvent):void {}
    bolProgressScrub = true;
       
    mcVideoControls.mcProgressScrubber.startDrag (true, new Rectangle (0, 2, 472, 0));
    }

    function mouseReleased(e:MouseEvent):void {}
    bolVolumeScrub = false;
    bolProgressScrub = false;
       
    mcVideoControls.mcProgressScrubber.stopDrag ();
    mcVideoControls.mcVolumeScrubber.stopDrag ();
       
    mcVideoControls.mcProgressFill.mcFillRed.width = mcVideoControls.mcProgressScrubber.x + 5;
    mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 405 + 53;
       
    If ((mcVideoControls.mcVolumeScrubber.x-354) / 53 > 0)
    intLastVolume = (mcVideoControls.mcVolumeScrubber.x - 354) / 53;
    }

    function updateDisplay(e:TimerEvent):void {}
    If (bolProgressScrub)
    Stream.Seek (Math.round (mcVideoControls.mcProgressScrubber.x * objInfo.duration/472))
    on the other
    mcVideoControls.mcProgressScrubber.x = stream.time * 472 / objInfo.duration;
       
    mcVideoControls.lblTimeDuration.htmlText = "" + formatTime (stream.time) + " /" + formatTime (objInfo.duration);
       
    mcVideoControls.mcProgressFill.mcFillRed.width = mcVideoControls.mcProgressScrubber.x + 5;
    mcVideoControls.mcProgressFill.mcFillGrey.width = stream.bytesLoaded * 478 / stream.bytesTotal;
       
    {if (bolVolumeScrub)}
    setVolume ((mcVideoControls.mcVolumeScrubber.x-354) / 53);
    mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 405 + 53;
    }
    }

    var duration: number;
    function onMetaData(info:Object):void {}
    objInfo = info;

    tmrDisplay.start ();
    }

    function stopVideoPlayer (): void {}
    Stream.pause ();
    Stream.Seek (0);
    vidDisplay.visible = false;
    mcVideoControls.btnPause.visible = false;
    mcVideoControls.btnPlay.visible = true;
    }

    function setVolume(intVolume:Number_=_0):void {}

    var sndTransform = new SoundTransform (intVolume);
    {if (Stream)}
    stream.soundTransform = sndTransform;
    }
       
    If (intVolume > 0) {}
    mcVideoControls.btnMute.visible = true;
    mcVideoControls.btnUnmute.visible = false;
    } else {}
    mcVideoControls.btnMute.visible = false;
    mcVideoControls.btnUnmute.visible = true;
    }
    }

    function formatTime(t:int):String {}
    Returns the minutes and seconds with leading zeros
    for example: 70 returns at 01:10
    var s:int = Math.round (t);
    var m:int = 0;
    If (s > 0) {}
    While (s > 59) {}
    m ++ ;
    s = 60;
    }
    Returns a String ((m< 10="" "0"="" :="" "")="" +="" m="" +="" ":"="" +="" (s="">< 10="" "0"="" :="" "")="" +="">
    } else {}
    return "00:00";
    }
    }

    function fullscreenOnClicked(e:MouseEvent):void {}
    stage.displayState = StageDisplayState.FULL_SCREEN;
    }

    function fullscreenOffClicked(e:MouseEvent):void {}
    stage.displayState = StageDisplayState.NORMAL;
       
    }

    function onFullscreen(e:FullScreenEvent):void {}
    If {(e.fullScreen)
           
    buttons switch full screen
    mcVideoControls.btnFullscreenOn.visible = false;
    mcVideoControls.btnFullscreenOff.visible = true;
    mcVideoControls.skinAutoHide = true;
    mcVideoControls.skinFadeTime = 01;
               
    bottom to center align controls
    mcVideoControls.x = (Capabilities.screenResolutionX - 480) / 2;
    mcVideoControls.y = (Capabilities.screenResolutionY - 36);
           
    the size of the video display
    vidDisplay.height = mcplay.height = (Capabilities.screenResolutionY - 36);
    vidDisplay.width = mcplay.width = vidDisplay.height * 4 / 3;
    vidDisplay.x = mcplay.x = (Capabilities.screenResolutionX - vidDisplay.width) / 2;
    } else {}
    buttons switch full screen
    mcVideoControls.btnFullscreenOn.visible = true;
    mcVideoControls.btnFullscreenOff.visible = false;
           
    reset the position of the controls
    mcVideoControls.x = 0;
    mcVideoControls.y = 360;
           
    Reset video display
    vidDisplay.y = mcplay.x = 0;
    vidDisplay.x = mcplay.y = 0;
    vidDisplay.width = mcplay.width = 480;
    vidDisplay.height = mcplay.height = 360;
    }
    }

    function resizeHandler(e:Event):void
    {
    mcVideoControls.x = (stage.stageWidth - mcVideoControls.width) / 2;
    mcVideoControls.y = stage.stageHeight - mcVideoControls.height;
    }

    Copy and paste the code above (or) simply change things "BOLD" above. It will solve

  • How can I disable autoplay video on Firefox on my phone?

    I open tabs on Firefox on my phone and video autoplays in tabs in the background. I have no data unlimited, and I don't like him screaming audio suddenly when I am trying to be discreet.
    Is it possible to stop this?
    Other this question, I like firefox.
    Thanks in advance for your help.

    On 41 of Firefox that will allow us to release next Tuesday, you can use an option in the settings to disable automatic playback of the video.

    • Firefox 3 dot the menu or the menu button on the phone
    • Parameters
    • view
    • Uncheck the box next to allow autoplay
  • How to stop play automatically Youtube videos?

    I have no idea if it's a firefox problem or a problem add-on, but since the update yesterday, embedded YouTube videos started playing automatically. Obviously, this is not ideal because I won't be stopped whenever I visit some sites, especially when there are several, so does anyone have an idea how to stop this?

    Problem solved, it was a module update which I did not know that I have always used.

  • How to stop a freeze on transition framing between two video clips?

    Hi all

    Newbiee here

    How to stop a freeze on transition framing between two video clips?

    Cheers for your help in advance.

    Make sure that your clips have long enough 'handles', extra material before and after the change, the less both the duration of the transition.

  • How can I make a video autoplay Vimeo-bound on a phone or a Tablet (works fine on office)?

    How can I make a video autoplay Vimeo-bound on a phone or a Tablet (works fine on office)? They are placed in the layout using the widget background full page.

    No, you cannot. Almost all manufacturers and developers of mobile devices settled their systems not to AutoPlay videos, in order to protect the bandwidth budget and the user data when they are mobile. The user must always give their device and data consuming processes, such as watching video from app.

  • How to stop a video to play after using removechild?

    I'm new to flash and asc3.  I am developing a website using cs3.  I have the main swf file that calls in other SWF files help to add a child.  SWFs that I call, have video using the flvplayer standard.  The problem that I encounter (and driving me crazy) is at this time I use the remove the child, you can still hear the audio of the video that has just been deleted.  How to stop it?  Help, please.  If you want more details, let me know.  I really need to solve this problem as soon as possible.  Thank you.

    Try adding this to your code:

    SoundMixer.stopAll();

  • Make the madness stop! How to adjust video settings on my RESUME?

    I have worked with computers for over 20 years and I can't for the life of understand me how to adjust video settings on an all in one HP PC.  There is no control on the screen, except a single switch, and there is no control of software that I can find.  The monitor is so bright that my eyes are burning contributed the most.

    Help, please!

    OK, I thought about it. I didn't know that I have to go these submenus incorporated.

    You right-click on the desktop
    Click screen resolution
    Advanced settings
    Select AMD Vision
    Click on the big box AMD
    Under desk poster you click Desktop Management
    Then click on desktop color

    Nice and easy, huh?

  • How to stop a download to open automatically

    How to stop a downloaded file open automatically, because it is really frustrating when I download music and videos as well as the files play automatically.

    It is a question, I intend to answer that I discovered the answer today and could not find it in the community. Apple support also could not solve this problem.

    Answer:

    In Safari preferences in the general section, there is a small box at the bottom that is checked by default, clear this check box.

    The box is called:

    Open your 'safe' after downloading files

    'reliable' files include movies, photos,

    PDF documents and text, sounds and

    Archives

    In Safari preferences in the general section, there is a small box at the bottom that is checked by default, clear this check box.

    The box is called:

    Open your 'safe' after downloading files

    'reliable' files include movies, photos,

    PDF documents and text, sounds and

    Archives

  • When I try to download on a site, hundreds of new tabs begin to run. How to stop this problm that started recently?

    When I try to download it from a site, hundreds of new tabs begin to open. This is a recent thing, how he stop?

    What is in these new tabs? Ads?

    Adblock more {web link}
    Blocks annoying video ads on YouTube, Facebook ads, banners
    and much more. Adblock Plus blocks all the annoying ads, and
    supports Web sites by blocking is not discrete (configurable) default ads.

    Pop-up Addon Adblock more {web link}
    Adblock Plus pop-up Addon - extends the functionality of blocking of the
    Adblock Plus for those annoying windows pop up that opens on the mouse
    clicks and other actions of the user.

    Forum; Homepage of Adblock Plus {web link}

  • "How to stop this message"do you want to install the plugin required to view media on this page.

    How to stop this message "do you want to install the plugin required to view media on this page.

    I don't need the plugin to play the video ok

    If it comes from the Flash plugin you can switch pref plugins.notifyMissingFlash false on the topic: config page.

    You can open the topic: config page via the bar of address and you can accept the warning and click "I'll be careful" to continue.

  • How can I activate CV for safari in OS El Capitan?

    How can I activate CV for safari in OS El Capitan?

    Don't turn off Safari before you when stop you the mac, and When you stop, check the "reopen windows when you connect in '.

  • How to stop the dashboard at the bottom of the screen in endangered?

    How to stop the dashboard to disappear the bottom of Safari.  It did not happen, but I installed iCapitan.

    Dashboard or the Dock? If you mean that the docking menu Apple > System Preferences > Dock > automatically hide / show Dock.

    OS X El Capitan: use the docking station

Maybe you are looking for

  • Tech Support number of HP.

    I've been on HP forums for a while now, and I've noticed a disturbing trend.  People have a hard time finding HP Technical Support number.  It shouldn't be like that.  So, I decided to do something about it. You can join the 1-800-474-6836 Technical

  • Question about Camileo X 100 / 30

    Can someone please tell me when the Camileo x 100 and 30 are going to be released?

  • Installation of Win 8.1 on Envy 700-215

    Hi all I tried to install win 8.1 but I will get this massege. Windows cannot be installed to this disk. The selected disk is not the GPT partition. Is it possible to install the operating system. My current operating system is win 7. Thank you

  • Difficult to parse JSON

    Hi all I tried to analyze the JSON WebService part trati coming here. I was able to analyze only the inner part using NEITHER "unflatten of JSON. The main problem are: (1) this JSON is an array of objects of different type (2) this JSON contains the

  • Vista - Error Code: 800700 1 (cannot install updates)

    I tried to install the updates for days and I can't do anything. He began by blocking in the preparation of the installation (it lasted 2 days), and then I ran fixit from microsoft on the internet program, which helps not at all. Now windows update t