this post was submitted on 28 Jul 2025
517 points (98.0% liked)

Technology

73346 readers
4800 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
you are viewing a single comment's thread
view the rest of the comments
[–] masterofn001@lemmy.ca 281 points 1 day ago* (last edited 9 hours ago) (8 children)

It is not age verification.

It is privacy invading, morality policing, de-anonymizing, state surveillance.

Nothing less.

PS. If you want to download a video from a site that doesn't have a download button, use the Inspect feature (right click on the page, not the video, and click inspect)

*On the Network tab - Sort by size. Reload page. Find the video. Open the video in new tab. It will be just the video. Right click and save as, or click the download button, or click the 3 dot menu button and select download.

On Firefox you can often bypass this entirely by shift + right click. And should see a save video as option. If not, the inspect feature works the same.

For hls/TS videos (m3u8 streams), if you reallllly want, you can copy the link for the stream and use VLC to convert the stream to a file.

This also often lets you download at higher resolution than they offer to download.

Yes, I porn.

*forgot Network tab

And thanks for all the suggestions. I'd rather not install browser plugins if I can do it without. CLI tools are cool though. The less I need to install the better.

[–] gandalf_der_12te@discuss.tchncs.de 3 points 14 hours ago* (last edited 13 hours ago) (1 children)

to convert from hls (m3u8 streams) to mp4, you can also use ffmpeg:

ffmpeg -i https://y.com/path/to/stream.m3u8 -c copy output.mp4

  • -i <input> specifies the input file
  • -c copy specifies that the contents should not be re-encoded (which would take a lot of time and computing power)
  • output.mp4 is the output file
[–] masterofn001@lemmy.ca 3 points 9 hours ago

Now this I can use.

Vlc can be a bit... Tedious.

Thanks.

[–] G4Z@feddit.uk 1 points 14 hours ago

Or just Video Downloadhelper.

[–] HakunaHafada@lemmy.dbzer0.com 1 points 15 hours ago

I really wish I could upvote this more than once. This is awesome.

[–] passepartout@feddit.org 55 points 1 day ago

Shout out to yt-dlp, the absolute unit of software beneath lots of media scraping tools.

You can also use MPV Video player, should be able to play many URLs you throw at it.

yt-dlp is also insanely good for this - just install it, point it at the URL and it'll usually figrue out how to grab the video without any fuss.

[–] atticus88th@lemmy.world 32 points 1 day ago (2 children)

Its easier to just sail the torrential high seas and get that 4k h265 quality shit that sites keep for paying members only. Once you know the models name its easy to get their entire collection.

I professionally pron too.

[–] Manifish_Destiny@lemmy.world 1 points 1 day ago (1 children)

Nowadays I'm also worried about acquiring a stealerlog collection as well.

[–] BaroqueInMind@piefed.social 4 points 1 day ago (4 children)

How would one do this on a mobile browser?

[–] LostXOR@fedia.io 2 points 17 hours ago

If you're on Android you can use yt-dlp in Termux. A little inconvenient but it works.

[–] SmackemWittadic@lemmy.world 8 points 1 day ago* (last edited 1 day ago) (1 children)

Chromium based browsers have an option that lets you view the source code by putting "view-source:" before the URL to see embedded videos

So

https://www.website.com/pagewithvideo

becomes

view-source:https://www.website.com/pagewithvideo

[–] BaroqueInMind@piefed.social 2 points 1 day ago (1 children)

I never knew this. Thank you!

[–] SmackemWittadic@lemmy.world 2 points 1 day ago

No worries! In a lot of sites you'll find the embeded video or picture in a link in the source code. However, I haven't figured tried to get this to work on YouTube in mobile browsers so that might not work

[–] markko@lemmy.world 7 points 1 day ago (1 children)

I'd imagine you'd need a browser that has developer tools, which is far less common on mobile. A simpler solution would be to use a separate app that just takes the page URL and downloads the video for you, such as this one: https://f-droid.org/en/packages/com.junkfood.seal/

[–] jim3692@discuss.online 1 points 1 day ago

Kiwi Browser has developer tools

[–] IllNess@infosec.pub 1 points 1 day ago

Note: this isn't free but I use 1DM+. It has it's own browser that filters out the videos for download. It won't work with YouTube and a bunch of other websites because Google acts like a little bitch to the developer.

[–] devdoggy@lemmy.world 3 points 1 day ago

That is fucking amazing. Thank you!