8
Life of an Emacs User. (lemmy.dbzer0.com)
[-] equalszero@lemmy.dbzer0.com 7 points 1 year ago

Someone upload this one to sourcehut. I'm really curious to see how Drew will response to DMCA like that

23
Removing metadata scripts (lemmy.dbzer0.com)

Let's start a thread with scripts that remove metadata from files.

I will start by sharing some that use ffmpeg for mp4 files

Bash

for file in /path/to/folder/*.mp4; do ffmpeg -i "$file" -map_metadata -1 -c:v copy -c:a copy "/path/to/folder/$(basename "$file")"; done

Replace /path/to/folder with the actual path to the folder containing the input files. This command will iterate over all mp4 files in the folder and execute the ffmpeg command with the same input and output filenames.

Emacs Lisp

(defun batch-process-mp4-files (folder)
  (interactive "DSelect folder: ")
  (async-shell-command
   (format "for file in %s/*.mp4; do ffmpeg -i \"$file\" -map_metadata -1 -c:v copy -c:a copy \"%s/$(basename \"$file\")\"; done"
           folder folder)))

Same as the above bash command, but you can just put the folder path interactively, and since it's async-shell-command you can run multiple of them with ease.

What do you use?

[-] equalszero@lemmy.dbzer0.com 14 points 1 year ago

The list are not recommended VPN Providers, they are anything but private since they are using Google services etc

[-] equalszero@lemmy.dbzer0.com 9 points 1 year ago

Paying with credit cards etc deanonymizes you

I'm not a fan of using crypto as an investment tool, but since I cant pay with cash via the internet crypto is the next best option.

177

There's way too much hype over VPN Providers, but do not forget, you are routing all your traffic through their servers

As a general advice, if a VPN provider keeps logs of your activity, does not allow you to pay with crypto, and generally spends way too much on youtube ads is probably not an ideal choice.

Do not follow any advice/recommendation blindly, do your own research on which one offers the best service for your own needs.

TorrentFreak Q&A with VPN Providers

[-] equalszero@lemmy.dbzer0.com 34 points 1 year ago

A piracy forum needs to be decentralised and based on FOSS software to be able to have quality content, we are not advertisement friendly lol.

Lemmy is the best option.

If not Lemmy then maybe a discourse forum but that would be even worse for mobile users.

Lemmy will only get better from now on, but tbh I prefer its UI over other alternatives official app.

[-] equalszero@lemmy.dbzer0.com 4 points 1 year ago

I use a VPN to avoid captivation portals. That alone makes it worth it for me since I can have free internet connection, my ISP just puts a captivation portal instead of just cutting off your internet access.

[-] equalszero@lemmy.dbzer0.com 55 points 1 year ago

Let Reddit die, they've monetized our content and then spit at our faces, especially at the mods.

Please create a decentralized harbor to share piracy related content. Dont visit this site again.

[-] equalszero@lemmy.dbzer0.com 11 points 1 year ago

This works for yt videos fine, but yt-dl is unmaintained and slow, you will have issues downloading content outside from yt too

[-] equalszero@lemmy.dbzer0.com 8 points 1 year ago

The ublcok solution above works fine, but you don't have to use the dev tools while in the site. Just F12 before going to the site -> performance -> start recording -> close dev tools -> visit site and start watching the video -> close tab and back to dev tools -> capture recording

[-] equalszero@lemmy.dbzer0.com 16 points 1 year ago* (last edited 1 year ago)

Thanks!

It's a must have add on, but it's still just an add on, we should know the basics of what's happening behind the scenes to sail the 7 seas.

The reason I posted that is to inspire some of you in creating fancy scripts that can easily do more than just downloading one video.

[-] equalszero@lemmy.dbzer0.com 4 points 1 year ago

I'd recommend trying gogoanime etc first, then sail the deep waters :)

[-] equalszero@lemmy.dbzer0.com 6 points 1 year ago

There fancier ways to do this, it's just an intro. What exactly are you usually looking for?

883

Getting started

To do this properly, you need to understand how those websites work.

For the shake of simplicity fellow "pirates", they utilize m3u wiki link

  • m3u8 99% of the time.

You will also need yt-dlp install it if you don't have already

Example on utilizing this knowledge
  • Go to your favorite streaming site
  • Simple press F12
  • Go to Network
  • Select XHR (XMLHttpRequest)
  • Filter URLs for m3u8
    • If you find more than one, just test them out, you will soon find the trick on your own :)
  • Copy the URL
  • Open a terminal and type yt-dlp <your-copied-link>

Do it Ethically

Some may call us pirates, which I find really cool

But the true evil Pirates/criminals are the ones that keep the power to themselves and don't share it with others

Information is the only true power, and it should be free(free as in free speech) for all.

Share your own tips & tricks in the comments if you want!

[-] equalszero@lemmy.dbzer0.com 7 points 1 year ago

After watching those episodes, you become a master of networking and OPSEC, thanks! 🤣

24
Guides for uploaders (lemmy.dbzer0.com)
submitted 1 year ago* (last edited 1 year ago) by equalszero@lemmy.dbzer0.com to c/piracy@lemmy.dbzer0.com

Recently learned how to downloaded 'protected' content and have to say things are pretty simple when you start learning the basics of how things work.

But its pretty hard to get started with, there is not much content for uploaders, at least that I can find easily. Do you have any recommendations to read on uploading content safely? Metadata etc.

view more: next ›

equalszero

joined 1 year ago