Agathon

joined 2 years ago
[–] [email protected] 7 points 1 week ago

Arrr, that be terrible!

[–] [email protected] 72 points 1 month ago (4 children)

I’m tired of pretending [piracy of lossless rips of] physical media isn’t still better than streaming digital.

It is fun to own a physical version for my favorites though. Especially when effort goes into crafting an actual souvenir and not just a money-grab.

[–] [email protected] 2 points 3 months ago

Most music torrent sites have notifications for artists you follow.

[–] [email protected] 11 points 4 months ago (1 children)

It’s public domain to me.

[–] [email protected] 147 points 6 months ago (12 children)

Anon needs Jellyfin.

[–] [email protected] 64 points 6 months ago (4 children)

I wonder if pirates can come to the rescue by providing uncensored textbooks to students.

[–] [email protected] 37 points 7 months ago (7 children)

🏴‍☠️

15
Tidepool Trip (lemmy.dbzer0.com)
 
[–] [email protected] 37 points 7 months ago

my AI is so good, it generated one that’s 100% identical

plus my AI uses less than 99% of the electricity of Microsoft’s

[–] [email protected] 5 points 7 months ago

🏴‍☠️

[–] [email protected] 1 points 8 months ago (1 children)

There are at least two ebook torrent trackers that have ebooks in multiple languages.

37
The Pirate Movie (lemmy.dbzer0.com)
 
340
submitted 11 months ago* (last edited 11 months ago) by [email protected] to c/[email protected]
 

Background: I bought a Blue-ray set that came with a code for the digital copy. This was back before Funimation was acquired. I could go through and rip my discs since Sony seems to be on the verge of nuking my digital copies, but teaching myself yt-dlp seemed more convenient.

Here's are the settings I ended up using with yt-dlp to download digital copies from Funimation. I paste all three of these at the same time into the terminal, but you can paste them one at a time if you want. I'm on Linux and log into Funimation with Firefox, but it should be almost the same for Windows. The URL needs to be changed for each download. I have noticed some downloads stalling, but I if I refresh the pages that lists the episodes, the download resumes.

yt-dlp --cookies-from-browser firefox -F https://www.funimation.com/path-to-episode
yt-dlp --cookies-from-browser firefox --list-subs https://www.funimation.com/path-to-episode
yt-dlp --cookies-from-browser firefox --write-description --write-info-json --write-sub --write-thumbnail --embed-subs -o '~/Path/To/Downloads/Video/Folder/s%(season_number)02de%(episode_number)02d - %(title)s.%(ext)s' https://www.funimation.com/path-to-episode

Here's what each part means:

Line 1:

 -F

Outputs you which versions are available. I have it tell me this, so I can make sure when I run Line 3 the output matches the highest quality listed in the output from Line 1

 --cookies-from-browser firefox

Tells yt-dlp to use the cookies from your browser to authenicate the download since it's only available if you're logged in.

Line 2:

 --list-subs

Tells yt-dlp to list the kinds of subtitles it can find. I have a few episodes that it cannot find any subtitles even though they're avaiable when streaming. It seems like it's something weird with some episodes, and is probably related to this: https://github.com/yt-dlp/yt-dlp/issues/1656

Line 3:

 --write-description

Makes a .description text file with the description metadata in it in the same folder you download to.

 --write-info-json

Makes an .info.json json/text file with all the metadata in it in the same folder you download to.

 --write-sub

Makes an .srt srt/text file with the subtitles in it in the same folder you download to.

 --write-thumbnail

Makes a .jpg image file of the thumbnail artwork for the episode in the same folder you download to.

 --embed-subs

Embeds the subtitles in the downloaded video file.

 -o '~/Path/To/Downloads/Video/Folder/s%(season_number)02de%(episode_number)02d - %(title)s.%(ext)s'

Specifies the download path, and formats the filename as: s##e## - Episode Title.mp4

Hope this helps someone. I realize you could skip all this hassle and just pirate it somewhere, but I'm not sure where to find this specific release other than the digital copy on Funimation.

view more: next ›