That'll make youtube disappear for me.
Over the years I watched less and less. I only seldomly have to look into youtube for things that are easier in video than in text.
Teens and many people don't know that there is a world without ads. They have to be educated that there are alternatives - not watching youtube is a real option. You do not depend on it.
This is where we could use a browser plug in that uses AI to learn what an ad is and skip it for us. Now we just need someone to start working on it.
Plugins can add controls and it can download videos, but plugins can't interact with videos directly I think.
Maybe use the Youtube API closed captions and figure out the patterns for ads that way?
Of course they can interact with it just fine, look at "sponsorblock" plug-in. It would also solve this problem completely. It already exists and works well, it just isn't "AI" nonsense.
Yes, that is adding controls and using a database from the SponsorBlock server.
What I mean is a plugin cannot see the video. Like you can't write
if(screen == adScreen) { then skipToNextSegment(); }
The plugin isn't reading the video, it is getting info from a database. For AI or machine learning to work ad injection, which might change for every user, doing what SponsorBlock is doing is not enough.
YT has 2 posibilities
- Hosting all videos doble, one with ads and the same vids without for premium user
- Insert also markers which at the end also are exploited by adblockers and userscripts
I think they'll hit their teeth against a rock with this.
Meanwhile a lot of content creators a changing to Odysee
- Hosting all videos doble, one with ads and the same vids without for premium user
Not quite sure why, they simply could in the fly stitch those files together.
Twitch is doing that for a while now i think.
Exactly this. It isn't even really "stitching" as YouTube videos are served as a series of short chunks anyways. So you simply tell the player that there are a few extra chunks which happen to be ads. There is no video processing required it is basically free to do it this way on the sever side.
That is true. But then you could probably use the chunk length to determine where the ads starts and ends since there is with a very high probability an unusually long chunk at those times.
I don't know about YouTube but the chunks are often a fixed length. For example 1 or 2 seconds. So as long as the ad itself is an even number of seconds (which YouTube can require, or just pad the add to the nearest second) so there is no concrete difference between the 1s "content" chunks vs the 1s "ad" chunks.
If you are trying to predict the ad chunks you are probably better off doing things like detecting sudden loudness changes, different colour tones or similar. But this will always be imperfect as these could just be scene changes that happened to be chunk aligned in the content.
Not with the crrent ones, it's easier to difference ads by code than by content in most Vids, eg, divulgations, news, influencers, etc. YT, to not destroy the own business modell, also avoiding that there later also 5 years old vids with outdated ads, must use some kind of dynamic insertion, that means, it can be discovered and skipped by some userscripts, for sure not in the extension stores, but in Greasyfork or OpenuserJS, which are independent from Google influence.