this post was submitted on 20 Dec 2024
602 points (96.5% liked)

Technology

63082 readers
2410 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 content.
  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, to ask if your bot can be added please contact us.
  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
 
(page 6) 50 comments
sorted by: hot top controversial new old
[–] [email protected] 28 points 2 months ago

Looks like google needs more broken up!

[–] [email protected] 12 points 2 months ago (1 children)
load more comments (1 replies)
[–] [email protected] 73 points 2 months ago (5 children)

I kinda miss when places would host their own videos instead of relying on youtube, but that's the problem of a centralized internet, the majority of people won't want to leave yt/ig/fb/tiktok/twitter/reddit in order to watch or read whatever you posted.

[–] [email protected] 31 points 2 months ago* (last edited 2 months ago) (8 children)

Also self-hosted video often has really shitty players.

load more comments (8 replies)
load more comments (4 replies)
[–] [email protected] 13 points 2 months ago (1 children)

Just replace the watch?v= with embed/

[–] [email protected] 7 points 2 months ago* (last edited 2 months ago) (4 children)

Delete this, YouTube will catch on and block this workaround.

Edit: disregard. Here is a custom GreaseMonkey/ViolentMonkey userscript to automatically do this for you:

// ==UserScript==
// @name         YouTube to Embed Redirect (Desktop & Mobile)
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Redirects YouTube video URLs (desktop and mobile) to their embed version.
// @author       BaroqueInMind
// @match        https://www.youtube.com/watch?v*
// @match        https://m.youtube.com/watch?v*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Extract the video ID from the URL
    const videoId = new URLSearchParams(window.location.search).get('v');

    if (videoId) {
        // Redirect to the embed URL
        window.location.href = `https://www.youtube.com/embed/$%7BvideoId%7D`;
    }
})();

load more comments (4 replies)
[–] [email protected] 5 points 2 months ago

Yeah, they're trying new things again. Gotta squeeze that stone for all the blood that's in it.

One of my accounts has been getting a long delay before the video starts. Pre-roll ads are trying to load and play but the add-ons I have installed are still stopping them from completely succeeding. For now.

I also have auto-play turned off, and I wonder if that has anything to do with it.

Pretty sure the systems at their side think that I'm seeing the ads because I've had pop-ups during the delay offering free Premium.

load more comments
view more: ‹ prev next ›