this post was submitted on 15 May 2025
937 points (98.8% liked)

Technology

70080 readers
3811 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

This week YouTube hosted Brandcast 2025 in which it revealed how marketers could make better use of the platform to connect with customers.

A few new so-called innovations were announced at the event but one has caught the attention of the internet – Peak Points. This new product makes use of Gemini to detect “the most meaningful, or ‘peak’, moments within YouTube’s popular content to place your brand where audiences are the most engaged”.

Essentially, YouTube will use Gemini and probably the heatmap generated on YouTube videos by people skipping to popular points, to determine where to place advertising. Anybody who has grown up watching terrestrial television where adverts arrive as a way to build suspense will understand how annoying Peak Points could become.

you are viewing a single comment's thread
view the rest of the comments
[–] GenosseFlosse@feddit.org 2 points 17 hours ago* (last edited 17 hours ago)

This task is not that complicated. You have a list of timestamps with the seconds and the number of interactions for that second. All you need to do is to find the seconds with the most interactions. On a 1h video this would be only 3600 calculations "if currentValue is greater than maxValue". If you store it as a Plain integer array you would need ~14KB of RAM. For comparison, a 1987 homecomputer with a 68000 CPU would do ~7Million calculations per second and have ~512kB of RAM, depending on the options.