Search found 16 matches

by yodaspowart
04 Mar 2024, 22:27
Forum: Episode / Movie Naming Scheme
Topic: my multiple/duplicate subtitles naming scheme
Replies: 3
Views: 6035

Re: my multiple/duplicate subtitles naming scheme

Following 2x posts have to TV Multi-Subtitle same language working now in Plex, thanks @rednoah .
- [DOCS] {lang} and {subt} subtitle language tag

Using this from this post: emby.id title inconsistent with title
{ if (dc > 1) " (Part $di)" }


1. Already named TV show video files. Adding multi ...
by yodaspowart
23 Oct 2021, 21:01
Forum: Episode / Movie Naming Scheme
Topic: Plex tv series naming and {} braces -- how do I do it?
Replies: 11
Views: 30395

Re: Plex tv series naming and {} braces -- how do I do it?

Thanks rednoah, been wanting to know how to do this for a while:

Code: Select all

{"{imdb-$imdbid}"}
by yodaspowart
01 Jun 2021, 21:35
Forum: Episode / Movie Naming Scheme
Topic: Curly brackets in filename
Replies: 7
Views: 12955

Re: Curly brackets in filename

Thanks this was really helpful.
by yodaspowart
25 Apr 2020, 21:28
Forum: Help and Support
Topic: How to avoid changing file names
Replies: 1
Views: 2786

Re: How to avoid changing file names

If the files are already on Google Drive
Then you could just move them from the web-GUI: https://drive.google.com/drive/folders

If files are not on Google drive
1) You will hit the API, suggest checking out rclone to set this up worth looking at the arg: --fast-list https://rclone.org/docs ...
by yodaspowart
23 Apr 2020, 19:45
Forum: Ubuntu & Desktop Linux
Topic: [AMC] Configure --def plex for port 10760 instead of 32400
Replies: 6
Views: 6612

Re: [AMC] Configure --def plex for port 10760 instead of 32400

Manage to this just now set this up as:

--def exec="/home/neoyoda/scripts/updatePlex.sh"

Setting up: the updatePlex.sh
Change the scripts permission to 755, so it makes it executable by you. So do chmod +x >name of script<.sh

1) Go to folder:

cd ~/scripts


2) then run this:

chmod +x ...
by yodaspowart
21 Apr 2020, 21:36
Forum: Help and Support
Topic: Disable TV Shows in groovy Script as Running Sonarr to handle TV Shows
Replies: 2
Views: 3578

Disable TV Shows in groovy Script as Running Sonarr to handle TV Shows

Hi

Is there a way to Turn TV Shows OFF in terms of not even checking?

The log file is still showing TVs error as i'm using an out-of date filebot that doesn't support the new TVDB API.

I am handling all my TV Shows now through Sonarr.
Have commented out the TV Shows part of the script, but ...
by yodaspowart
26 Nov 2019, 23:22
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1035
Views: 1449866

Re: Batch Rename any type of file

Updated my unsorted folder now:

Currently it's working in case anyone is interested in this:
--def unsorted=y --def unsortedFormat="Unsorted/{fn =~ /2160p|4K|4k|UHD/ ? 'UHD-2160p/' : fn =~ /1080p/ ? 'HD-1080p' : fn =~ /720p/ ? 'HD-720p' : 'SD'}/{fn.before(/S\d{2}E\d{2}/).upperInitial().space ...
by yodaspowart
26 Nov 2019, 19:00
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1035
Views: 1449866

Re: Batch Rename any type of file

Thanks a lot @rednoah also for quick reply.
It's perfect for me.
by yodaspowart
26 Nov 2019, 04:46
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1035
Views: 1449866

Re: Batch Rename any type of file

As the TVDB is down for me on my seedbox (Linux/amc groovy script),
I am now using unsortedFormat
Managing to connect and rename to this online FTP folder fine using Mountain Duck and the latest Filebot which is working fine on my Mac.

--def unsorted=y --def unsortedFormat="Unsorted/{fn ...
by yodaspowart
29 Oct 2018, 23:30
Forum: Scripting and Automation
Topic: Help! Seperating Movies into different folders HD & 4k
Replies: 42
Views: 37887

Re: Help! Seperating Movies into different folders HD & 4k

This is what Im using for 3D Movies:

3D|3d|HSBS|3dhsbs|H-SBS|3dhou|H-OU

--def "movieFormat={fn =~ /2160p|4K|4k|UHD/ ? 'Movies 4K' : fn =~ /3D|3d|HSBS|3dhsbs|H-SBS|3dhou|H-OU/ ? 'Movies 3D' : 'Movies'}/{n} ({y}) - {allOf{match}{s3d}{hd}{vc}{vf}{n.findMatch(group) ? null : '- '+group} join ...
by yodaspowart
24 Apr 2018, 12:03
Forum: Episode / Movie Naming Scheme
Topic: Using the embedded metadata media title in my custom format
Replies: 6
Views: 10600

Re: Using the embedded metadata media title in my custom format

I had this same issue. Just change the order of the agent in Plex to not have local meta scrape 1st. Put it last
by yodaspowart
02 Jan 2018, 23:01
Forum: Scripting and Automation
Topic: Seedbox/Automation Issue
Replies: 6
Views: 10553

Re: Seedbox/Automation Issue

Seedbox automation with Mac running Resilio Sync , Hazel and Filebot
I discovered that the synced files are hidden before completly downloaded in a .sync folder if they are video files. Don't use FOLDERS when syncing - process doesn't work with Plex ready directories.

Setup uses:
Seedbox requires ...
by yodaspowart
14 Dec 2017, 22:33
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1035
Views: 1449866

Re: How about sharing our format expressions?

Thanks rednoah, this perfect for me!

My new script:
#!/bin/bash

export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
export LC_CTYPE="en_US.UTF-8"

TORRENT_PATH="$TR_TORRENT_DIR/$TR_TORRENT_NAME"
TORRENT_NAME="$TR_TORRENT_NAME"
TORRENT_LABEL="N/A"

# Subtitle language
SUBLANG=en
SKIP_EXTRACT=n ...
by yodaspowart
13 Dec 2017, 21:41
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1035
Views: 1449866

Re: How about sharing our format expressions?

Thanks.
This is useful to know that the "OR" can be used like that if i needed to trigger variants for the Folder Movies 4K or Movies 3D.

Was thinking the "OR" could be used like:

IF filename has 3D it goes to folder named "Movies 3D" (1920x1080P)
IF filename has 2160p it goes to folder named ...
by yodaspowart
13 Dec 2017, 19:36
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1035
Views: 1449866

Re: How about sharing our format expressions?

Have a basic script that uses the groovy setup for 4K content going into its own folder for Movies 4K & TV Shows 4K based on 2160p in file name else it goes to regular folders:

#!/bin/bash

export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
export LC_CTYPE="en_US.UTF-8"

TORRENT_PATH="$TR_TORRENT ...