Search found 6 matches

by skystormer
06 Feb 2024, 23:03
Forum: Episode / Movie Naming Scheme
Topic: Moving movies/shows to seperate folders based on language
Replies: 6
Views: 685

Re: Moving movies/shows to seperate folders based on language

And here I though I had it all figured out. Foreign movies no issues found. And tried to apply the same trick to foreign tv shows. Tried: H:/foreigntv1/{ folder.name.match(/\[(\w+)\]/).lower () }/{N} ({Y}) {{"{imdb-$imdbid}"}}/{'Season '+s}/{N} ({Y}) - {s00E00}{ '.' + lang.ISO2 } Folder is...
by skystormer
02 Feb 2024, 20:55
Forum: Episode / Movie Naming Scheme
Topic: Moving movies/shows to seperate folders based on language
Replies: 6
Views: 685

Re: Moving movies/shows to seperate folders based on language

This did the trick.
Was going for all lower.

Changed it to:

Format: Select all

{ folder.name.match(/\[(\w+)\]/).lower () }/
Thank you for the support.
by skystormer
02 Feb 2024, 19:27
Forum: Episode / Movie Naming Scheme
Topic: Moving movies/shows to seperate folders based on language
Replies: 6
Views: 685

Re: Moving movies/shows to seperate folders based on language

e.g. check for [HINDI] marker in the file path: { f.path.contains('[HINDI]') ? 'Hindi' : 'English' } e.g. check TMDB Original Movie Language : { language =~ /hin/ ? 'Hindi' : 'English' } Thx for this. { f.path.contains('[JAPANESE]') ? 'japanese' : f.path.contains('[HINDI]') ? 'hindi' : 'english' } ...
by skystormer
01 Feb 2024, 20:41
Forum: Episode / Movie Naming Scheme
Topic: Moving movies/shows to seperate folders based on language
Replies: 6
Views: 685

Moving movies/shows to seperate folders based on language

Not sure if possible, but am not that well versed into setting custom formats. And was happy in what I achieved. However now I wanna push it :) Currently I use for movies: D:/Movies/hindi/{N} ({Y}) {{"{imdb-$imdbid}"}}/{N} ({Y}){{"{imdb-$imdbid}"}}{ '.' + lang.ISO2 } The lack of ...
by skystormer
18 Jun 2023, 15:45
Forum: Scripting and Automation
Topic: Qbittorrent file renaming without moving files
Replies: 5
Views: 741

Re: Qbittorrent file renaming without moving files

If you are processing files within the the same file system, then you may prefer to use Hardlink so that you can have the same file twice at both the original file path and the Plex library file path. (NOTE: hardlinks require no time to create and require no additional disk space; if you can use ha...
by skystormer
18 Jun 2023, 07:55
Forum: Scripting and Automation
Topic: Qbittorrent file renaming without moving files
Replies: 5
Views: 741

Qbittorrent file renaming without moving files

Just wondering.
Is it possible for Filebot to rename files without copying the files to a different location?
(I want to rename files in Qbittorrent, allowing me to keep seeding those.)