474
submitted 7 months ago by [email protected] to c/[email protected]

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
[-] [email protected] 159 points 7 months ago* (last edited 7 months ago)

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

[-] [email protected] 57 points 7 months ago

Commercial breaks were when you muted the television and had about two minutes to go to the kitchen or use the bathroom. Even if it's forced, I'm not watching them.

[-] [email protected] 45 points 7 months ago

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

[-] [email protected] 21 points 7 months 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.

load more comments (1 replies)
[-] [email protected] 19 points 7 months 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

[-] [email protected] 103 points 7 months ago

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

[-] akilou 28 points 7 months ago

It's crazy that Google thinks people would rather watch 15 seconds of ads than 5 seconds of nothing.

[-] tyrefyre 9 points 7 months ago

What’s even crazier, for some people, actually a lot of people, they are right. Some people can’t be left alone with silence for that long.

Not me, but they are out there.

[-] [email protected] 8 points 7 months ago

suboptimal viewing [of the ads]

[-] [email protected] 57 points 7 months ago

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.

[-] [email protected] 40 points 7 months ago

More likely, people will stop using YouTube at all

Hahaha, no.

[-] [email protected] 6 points 7 months ago

I meant people who use Firefox+uBlock, not just any people.

load more comments (6 replies)
[-] [email protected] 19 points 7 months ago* (last edited 7 months ago)

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.

[-] [email protected] 6 points 7 months ago

And I want to personally blame all the tech savvy people that have helped chrome achieve monopoly status over the last decade. If you've used chrome as main browser, it's your fault.

load more comments (3 replies)
load more comments (1 replies)
[-] [email protected] 18 points 7 months ago

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.

[-] [email protected] 26 points 7 months ago

'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.

load more comments (5 replies)
load more comments (1 replies)
[-] merc 16 points 7 months ago

Yeah, people will just use YouTube's competitor.... uh... called... um...

[-] [email protected] 10 points 7 months ago
load more comments (5 replies)
[-] [email protected] 52 points 7 months ago

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.

[-] [email protected] 33 points 7 months ago

I think it's less panicking and more informational. The enshittification of Google has commenced and this is just documentation.

load more comments (2 replies)
[-] [email protected] 46 points 7 months ago

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.

[-] [email protected] 14 points 7 months ago

The user agent is in the request header, so it's known before any response is sent from YouTube.

I don't know if that's what they're doing, because it's not possible to know what their server code is doing, making it a far better place to hide sleazy code.

load more comments (4 replies)
[-] [email protected] 9 points 7 months ago* (last edited 7 months ago)

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.

load more comments (2 replies)
[-] [email protected] 9 points 7 months ago

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

load more comments (3 replies)
[-] CowsLookLikeMaps 36 points 7 months ago

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

[-] [email protected] 21 points 7 months ago

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?

[-] [email protected] 15 points 7 months ago

@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.

[-] [email protected] 8 points 7 months ago

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.

[-] [email protected] 7 points 7 months ago

I think Nebula aims to solve that.

[-] [email protected] 5 points 7 months ago

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.

load more comments (1 replies)
load more comments (2 replies)
[-] [email protected] 19 points 7 months 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.

load more comments (1 replies)
[-] [email protected] 36 points 7 months ago

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.

[-] nitefox 6 points 7 months ago

That snippet of code is browser agnostic, which means you have the same problem on chrome lol

[-] [email protected] 10 points 7 months ago* (last edited 7 months ago)

'not to worry, chrome will soon not have good adblockers, and those that remain will be crippled and have size-limited filter lists that must be distributed with the addon via our 'store'--meaning we can (and will at some point) shut down any filter updates that block our shit.'

load more comments (1 replies)
[-] [email protected] 7 points 7 months ago

From what I understand from the articles about this, it was found that different JavaScript code (without any delay added) was served in the HTTP response if Firefox was spoofed to look like the request came from Chrome, so it seems the issue only occurs on non-chrome browsers.

load more comments (1 replies)
[-] [email protected] 5 points 7 months ago

It seemed to be just a 5 second wait.

The weird part is that changing user agent to chrome seems to avoid it.

load more comments (1 replies)
[-] [email protected] 20 points 7 months ago

I block ads and havent noticed that

load more comments (4 replies)
[-] [email protected] 16 points 7 months ago

What an asshole company Google is.

[-] [email protected] 10 points 7 months ago
load more comments (1 replies)
[-] [email protected] 15 points 7 months ago

i too have a bridge to sell

[-] [email protected] 9 points 7 months ago

The Enshittification* of everything continues

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

[-] MonkCanatella 8 points 7 months ago

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.

load more comments (2 replies)
[-] [email protected] 8 points 7 months 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...

[-] [email protected] 6 points 7 months ago

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

load more comments
view more: next ›
this post was submitted on 21 Nov 2023
474 points (98.6% liked)

Firefox

16983 readers
53 users here now

A place to discuss the news and latest developments on the open-source browser Firefox

founded 4 years ago
MODERATORS