Mario.NET

Members
  • Posts

    35
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Mario.NET's Achievements

Freshman

Freshman (1/10)

4

Reputation

  1. Hi
    Could it be that we have a bad extension installed?

    My extensions are:

    • Adblock Plus
    • Stylish for Maxthon
    • Youtube center developer build
    • Autozoom
    • Favorites

     

  2. That's a preload tag Modern browsers start downoading a video file before user presses 'play', as an optimization (like buffering) Videos with preload="none" attribute should not be downloaded (and of course not played, also) Maxthon (4.9 and 5.0) downloads immediatly all three videos in the page, before user clicks play in any of them, even if they are marked with preload="none" You can check that from Developer tools, Network tab
  3. Right-click on a video, choose 'inspect element' In developer tools, you will be pointed at a <div> tag Just before it, there's the <video> tag: <video id="embed-583699a9897ea812053908_html5_api" class="vjs-tech" poster="https://67.media.tumblr.com/tumblr_ognnqnC9jE1ulku67_smart1.jpg" preload="none" muted="" data-crt-video="">
  4. Sorry about that That's another one: http://funnyfailvideos.tumblr.com/
  5. example page there are 4 <video> tags pointing to mp4 files they have the attribute preload="none", but the video get downloaded immediatly, without pressing 'play' (see F12 -> Network tab) Please provide a different site for this problem.
  6. By the w3c documentation, if a <video> tag has a preload="none" attribute, the browser should not preload the video Chrome as an example follows this rule, but Maxthon (both 4.9 and 5.0) downloads all the file anyway. In video heavy pages, that kills browser performance (and data caps, also)