this post was submitted on 30 Dec 2023
35 points (97.3% liked)

Selfhosted

39250 readers
212 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I only download 1080p unless it's something like LOTR that I'll splurge on space for. A comedy doesn't need spectacular visual fidelity.

Just downloaded a 44gb file for a 1080p version of Forest Gump, and I'm just kinda not interested in filling my hard drives with excessive file sizes. Noticed that some other films are 20gb and 13gb, etc, still way too big for what they are.

Any way to maybe have radarr have a file size preference? Like, for 1080p I don't need it to be any bigger than 3gb, and most movies can be 1.5gb and be fine

Edit: I have to say, I asked a beginner/basic question and no one here has tried to belittle me, or come at me with hostility, I've only gotten helpful advice. Thank you all!

all 13 comments
sorted by: hot top controversial new old
[–] [email protected] 36 points 8 months ago

you have been banned from /c/DataHoarder

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

You got a remux, which is uncompressed. You can turn those off in Radarr to avoid those surprises.

If you want to fine-tune your file sizes (and quality) further, you can set up custom formats and quality profiles. The Trash Guides explain it well, the "HD Blu-ray + Web" profile on that page is a solid starting point. It'll usually grab 6-12GB movies, but you can tweak it if you want them smaller.

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

Trash Guides FTW. I’ve used them for all my *arr setups and it’s been flawless.

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

Doesn't Trash Guides prefer larger files though? Iirc if you just do everything as they recommend you'll always be grabbing the highest quality stuff available, which is the opposite of what this person wants.

[–] [email protected] 4 points 8 months ago

The guide doesn’t set an upper bound on the UHD quality profiles, but that doesn’t mean you have to set up yours exactly the same.

I have mine set with reasonable limits and have never run into a problem with file size, just have to make sure you’re setting the values to something that’s a) realistic and b) that you can live with.

One thing to note: if you set your threshold cutoffs properly you don’t have to worry about downloading files that are always at the upper end of the limit. Once the service downloads a file that meets the threshold it stops downloading for that episode/movie. If it grabs a file that’s below the threshold, it will keep trying to upgrade the file until the threshold is met.

[–] [email protected] 10 points 8 months ago

You can do this with custom formats. You'd want to create a custom format that gives a score if the file is below a certain size threshold (say 1.5GB per hour), then add minimum custom scores to the release profiles you use (e.g. Bluray 1080p). You can also add custom filters for release groups that prioritise file size. YTS for example keeps their releases as small as possible.

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

Most modern devices should support x265 playback which has the compression sizes you are looking for.

In addition to setting the cap to file sizes for media, you can also blacklist tags like REMUX etc.

This is an example of a custom format for hevc/x265 files that are no larger than 6Gigs. You just need to create a new custom quality profile and give below custom format a positive/higher score.

{
  "name": "Minima",
  "includeCustomFormatWhenRenaming": false,
  "specifications": [
    {
      "name": "No mo than 6 Gigs",
      "implementation": "SizeSpecification",
      "negate": false,
      "required": true,
      "fields": {
        "min": 0,
        "max": 6
      }
    },
    {
      "name": "1080p",
      "implementation": "ResolutionSpecification",
      "negate": false,
      "required": true,
      "fields": {
        "value": 1080
      }
    },
    {
      "name": "eng",
      "implementation": "LanguageSpecification",
      "negate": false,
      "required": false,
      "fields": {
        "value": 1
      }
    },
    {
      "name": "Preferred x265",
      "implementation": "ReleaseTitleSpecification",
      "negate": false,
      "required": false,
      "fields": {
        "value": "[xh][ ._-]?265|\\\\bHEVC(\\\\b|\\\\d)"
      }
    }
  ]
}
[–] [email protected] 4 points 8 months ago

You can edit the accepted sizes under Settings > Quality

[–] [email protected] 4 points 8 months ago
[–] [email protected] 2 points 8 months ago

Think the "Quality Definitions" section of the settings in Radarr is what you're looking for.

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

44gb for 1080 seems to be a remux file, which is the source of channel not converted but only repackaged. Just remove remux from your profiles and sed radarr to upgrade to other 1080 profiles by moving remux down in the list.