The “Manifest V3” rollout is back after letting tensions cool for a year.

  • abhibeckert@beehaw.org
    link
    fedilink
    arrow-up
    5
    ·
    edit-2
    7 months ago

    … Safari added support for HTML5 video in 2009. Chrome did not even exist yet in 2009.

    In fact, Safari was the first to support it. At the time you had to use Flash to deliver video in every other browser.

    Firefox added a half assed implementation of the video tag shortly after Safari but it wasn’t fully supported until 2013 according to caniuse.com. In fact FireFox was the last browser to fully support HTML5 video.

    • Admiral Patrick@dubvee.org
      link
      fedilink
      English
      arrow-up
      12
      ·
      edit-2
      7 months ago

      Not looking to start a flame war here, but if that’s the case, then Apple’s had even longer to get it right. lol. I implemented my video containers using the MDN specs which worked for both FF and Chrom(e/ium) as-is. Had to read through Apple-specific specs to figure out why Safari wouldn’t render them (not autoplay but render at all).

      While it’s not quite “IE all over again”, it’s in the ballpark where I have to make special concessions to support a specific browser that is only offered on one company’s platform. History may not be repeating, but it’s certainly rhyming.

      • abhibeckert@beehaw.org
        link
        fedilink
        arrow-up
        7
        ·
        edit-2
        7 months ago

        Ah - that’s got nothing to do with supported features. Apple has always been a major backer of web based video distribution - a lot of the tech (from video formats to delivery platforms like HTTP Live Streaming to the tag were partially or even fully invented by Apple.

        Your video wasn’t working because the by default Safari assumes (correctly) that most video on the web is an ad. Safari generally only tolerates text/image ads* and to get video to work, you need to make it clear to Safari that the video is a real video the user wants to see.

        Safari also silently blocks something like 99% of cookies… only cookies that behave like login/session/etc cookies are allowed. That’s a lot more problematic than blocking video… since there’s often just no way around it.

        (* even text/image ads are barely tolerated… as far as I know, Safari is the only major browser that includes explicit support for ad blockers - Chrome/FireFox/etc allow extensions to arbitrarily manipulate the page, but safari actually has an ad blocking API - though they call it “content blocking”).