Firefox users are reporting an 'artificial' load time on YouTube videos. YouTube says it's part of a plan to make people who use adblockers "experience suboptimal viewing, regardless of the browser they are using."

top 50 comments

sorted by: hot top controversial new old
[–] 173 points 2 years ago* (5 children)

Even though it doesn't apply for me (praise Freetube and Grayjay!) I'd rather waste 5 second looking at black than any ad ever

  • source
  • hideshow 5 child comments
  • [–] 49 points 2 years ago (2 children)

    It's funny they think 5 seconds of no content is worst of 10~30 seconds of ads.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 21 points 2 years ago

    I think the goal it to make the user wonder "hum, looks like it's broken" hoping they disable adblocker during troubleshooting. I am not convinced at all about the effectivness of this measure, but it seems they are just trying anything.

  • source
  • parent
  • load more comments (1 reply)
  • [–] 22 points 2 years ago

    Yeah haha.. They really think we would hat it if there is not a ear busting sound which tells you to buy sth for at least 5 sec.

    The 5s black screen is automatically becoming a video

  • source
  • parent
  • [–] 112 points 2 years ago (3 children)

    I experience suboptimal viewing by having to watch ads. If I had to pick one or the other, I know which one I prefer.

  • source
  • hideshow 3 child comments
  • [–] 65 points 2 years ago (29 children)

    Jesus Christ, why can't they just leave it alone. At this point they are grasping at straws. More likely, people will stop using YouTube at all than turning off adblockers or switching browsers.

  • source
  • hideshow 29 child comments
  • [–] 20 points 2 years ago* (5 children)

    This is part of a much larger plan. Google wants to establish a new standard that the rest of the internet will follow.

    If Google is seen fighting an endless war against ad blockers, it will encourage other websites to do the same.

    No longer will it be "Please disable your ad blocker, as advertising supports us and helps keep this content free"

    It will start being "Ad blockers are not permitted."

    Google wants the Internet to start thinking of allowing ads as requirement for entry, and (via Manifest v3 and web environment integrity checking (which you better believe will be brought back in another form)), they will provide websites the tools to enforce this.

  • source
  • parent
  • hideshow 5 child comments
  • load more comments (1 reply)
  • [–] 19 points 2 years ago (7 children)

    Considering those are people who only cost them bandwidth and provide nothing in return, that might actually be a net positive for their bottom line.

  • source
  • parent
  • hideshow 7 child comments
  • [–] 29 points 2 years ago (5 children)

    'Those people' are still incredibly valuable for YouTube.

    They watch content, and interact with creators which increases the health of the community and draws in more viewers - some of whom will watch ads.

    They choose to spend their time on YouTube, increasing the chances they share videos, talk about videos, and otherwise increase the cultural mindshare of the platform.

    Lastly, by removing themselves from the advertising pool, they boost the engagement rates on the ads themselves. This allows YouTube to charge more to serve ads.

    Forcing everyone who currently uses an adblocker to watch ads wouldn't actually help YouTube make more money, it would just piss off advertisers as they would be paying to showore ads to an unengaged audience that wouldn't interact with those ads.

  • source
  • parent
  • hideshow 5 child comments
  • load more comments (5 replies)
  • load more comments (1 reply)
  • [–] 55 points 2 years ago (3 children)

    Can we stop panicing every 5 seconds? Give adblockers 1-10 days and they will fix it. We have been through this a bunch of times.

  • source
  • hideshow 3 child comments
  • load more comments (2 replies)
    [–] 50 points 2 years ago (12 children)

    Most of the articles writing about it seem to reference following reddit post: https://old.reddit.com/r/firefox/comments/17ywbjj/whenever_i_open_a_youtube_video_in_a_new_tab_its/k9w3ei4/

    Following code is pointed out:

    setTimeout(function() {
        c();
        a.resolve(1)
     }, 5E3);
    

    While this is a 5s timeout, the code itself does not check for the user agent. So wherever the code is the 5s timeout will occur. The code also does not seem to be injected server side. I spoofed my user agent and for good measure installed a fresh google chrome, both times the code was present. So this code cannot be used to make any browser slower without making the other browsers slow too.

    There is a response to the reddit post, which most articles seem to take their intel from. IMO this response does a good job at exploring what the code could be used for and points out that it is more than likely not for slowing down Firefox users: https://old.reddit.com/r/firefox/comments/17ywbjj/whenever_i_open_a_youtube_video_in_a_new_tab_its/ka08uqj/

    I am amused by thinking that many journalists seem to take this story from a post on reddit, without even reading the direct responses - or just copy from another article.

  • source
  • hideshow 12 child comments
  • [–] 9 points 2 years ago* (last edited 2 years ago) (2 children)

    That's out of context. That snippet of code existing is not sufficient to understand when does that part of the code gets actually executed, right?

    For all we know, that might have been taken from a piece of logic like this that adds the delay only for specific cases:

    if ( complex_obfuscated_logic_to_discriminate_users ) {
    
        setTimeout(function() {
            c();
            a.resolve(1)
        }, 5E3);
    
    } else {
    
        c();
        a.resolve(1)
    
    }
    

    It's possible that complex_obfuscated_logic_to_discriminate_users has some logic that changes based on user agent.

    And I expect it's likely more complex than just one if-else. I haven't had the time to check it myself, but there's probably a mess of extremely hard to read obfuscated code as result of some compilation steps purposefully designed to make it very hard to properly understand when are some paths actually being executed, as a way to make tampering more difficult.

  • source
  • parent
  • hideshow 2 child comments
  • load more comments (2 replies)
  • [–] [S] 9 points 2 years ago (3 children)

    Alternatively, it's funny that people write comments arguing that it wasn't targeted at Firefox users, on a post that already says that it wasn't targeted at Firefox users :P

  • source
  • parent
  • hideshow 3 child comments
  • [–] 6 points 2 years ago* (last edited 2 years ago)

    It doesn't really matter whether it was "targeted" at Firefox specifically or not, what matters is whether the website has logic that discriminates against Firefox users. Those are 2 different things. "End" vs "means".

    I wouldn't be surprised if the logic was written by some AI, without specifically targeting any browser, and from the training data the AI concluded that there's a high enough chance of adblocking to deserve handicapping the UX when the browser happens to be Firefox's. Given that all it's doing is slowing the website down (instead of straight out blocking them) it might be that this is just a lower level of protection they added for cases where there's some indicators even if there's not a 100% confidence an adblock is used.

  • source
  • parent
  • load more comments (2 replies)
  • [–] 36 points 2 years ago (8 children)

    Well, ads are usually quite a bit longer... So I really don't see what they would gain from that. Unless they lied, which is of course possible if not likely.

  • source
  • hideshow 8 child comments
  • [–] 31 points 2 years ago (10 children)

    A mass migration to a federated YouTube alternative couldn't come sooner.

  • source
  • hideshow 10 child comments
  • [–] 21 points 2 years ago (7 children)

    I keep seeing people throw this idea out there but I have yet to have received a reasonable answer to a simple question: How would content creators get paid on a federated video platform?

  • source
  • parent
  • hideshow 7 child comments
  • [–] 14 points 2 years ago (6 children)

    @I_Comment_On_EVERYTHING @CowsLookLikeMaps
    Patreon?

    Yes, content providers make money on YouTube, but considering that Google makes more than then they do as a percentage certainly begs for some other solution.

  • source
  • parent
  • hideshow 6 child comments
  • [–] 8 points 2 years ago (5 children)

    I have a bit over 60 YouTubers I'm subscribed to on YouTube. Am I supposed to pay $60+ every month to have access to them? The cheapest patreon I've ever seen was for $1 and that wasn't even for full access just a "buy me coffee, thanks" tier.

    What about discoverability, how am I supposed to randomly stumble across niche content creators that don't have a huge following?

    Not saying it isn't possible I just can't seem to wrap my head around how it would work.

  • source
  • parent
  • hideshow 5 child comments
  • [–] 5 points 2 years ago (1 child)

    The other big question is who's paying for the infrastructure? If payments are done through a third party like Patreon, the host can't take a cut. Serving lemmy text and image content from a home server is one thing. Being a 4k streaming host is an entirely different business. Way more computing load and bandwidth, which means higher hosting costs.

  • source
  • parent
  • hideshow 1 child comment
  • load more comments (1 reply)
  • load more comments (2 replies)
  • [–] 19 points 2 years ago

    That will never work. It simply doesn't work at scale like that, and it's very confusing for the non technical. Creators shouldn't have to worry about anything except uploading and moderating.

  • source
  • parent
  • load more comments (1 reply)
    [–] 20 points 2 years ago (4 children)

    I block ads and havent noticed that

  • source
  • hideshow 4 child comments
  • load more comments (4 replies)
    [–] 16 points 2 years ago (2 children)

    What an asshole company Google is.

  • source
  • hideshow 2 child comments
  • [–] 16 points 2 years ago

    i too have a bridge to sell

  • source
  • [–] 9 points 2 years ago

    The Enshittification* of everything continues

    * https://pluralistic.net/2023/01/21/potemkin-ai/#hey-guys

  • source
  • [–] 9 points 2 years ago

    I haven't had that issue. I've heard that disabling adblockers resolves it. But people have said that spoofing their user agent to chrome also magically resolves it...

  • source
  • [–] 7 points 2 years ago (2 children)

    I highly recommend just downloading any videos you want to watch. Some guy made an extensions for firefox on linux that lets you click a button and it just automatically downloads and opens that video in mpv player. You can also use tube archivist, yt dlp, etc to auto download your subscriptions.

  • source
  • hideshow 2 child comments
  • load more comments (2 replies)
    [–] 6 points 2 years ago

    F**k you, YouTube/Google! F*******k you! 🖕🖕🖕

  • source
  • load more comments
    view more: next ›