Worked like a charm, thanks a bunch
Search found 15 matches
- 10 Jun 2021, 09:22
- Forum: Episode / Movie Naming Scheme
- Topic: Alternative to {media.filename}
- Replies: 4
- Views: 7482
Re: Alternative to {media.filename}
- 10 Jun 2021, 09:04
- Forum: Episode / Movie Naming Scheme
- Topic: Alternative to {media.filename}
- Replies: 4
- Views: 7482
Re: Alternative to {media.filename}
If {media.filename} works for you then, {mediaFile.name} should give you the same result except faster. mediaFile.name does work but it keep the file extension at the end, any way to remove it? For example Mare.of.Easttown.S01E01.Miss.Lady.Hawk.Herself.1080p.AMZN.WEB-DL.DDP5.1.H.264-TEPES.mkv.mkv ...
- 10 Jun 2021, 00:42
- Forum: Episode / Movie Naming Scheme
- Topic: Alternative to {media.filename}
- Replies: 4
- Views: 7482
Alternative to {media.filename}
Hi, So I know that to make subtitle filenames take the name of the nearby video file {media.filename} is used, it work great with local files but in case of a mounted storage like Google Drive it's slow because the usage of mediainfo, the bigger the files the process become more slow and use a lot ...
- 07 Jun 2021, 11:45
- Forum: Episode / Movie Naming Scheme
- Topic: Getting infos from filenames instead of mediainfo
- Replies: 6
- Views: 7373
Re: Getting infos from filenames instead of mediainfo
What if I want to put (Erai-raws 1080p) at the end? You can match different patterns at different times in your format. e.g. { plex.name } ( { fn.match(/^\[(.*?)\]/) } { fn.match(/[0-9]{3,4}p/) } ) This one worked too, I'll start testing with regexr to figure out matching for different kind of ...
- 07 Jun 2021, 11:32
- Forum: Episode / Movie Naming Scheme
- Topic: Getting infos from filenames instead of mediainfo
- Replies: 6
- Views: 7373
Re: Getting infos from filenames instead of mediainfo
For subtitles ending with .eng using (/[0-9]{3,4}p.+/) keep the .eng like (1080p.AMZN.WEB-DL.DDP5.1.H.264-TEPES.eng) anyway to remove the .eng part? Here's how it works: https://regexr.com/5v0oe Thanks it worked! In case of anime, like [Erai-raws] Shingeki no Kyojin - The Final Season - 01 [1080p ...
- 07 Jun 2021, 11:05
- Forum: Episode / Movie Naming Scheme
- Topic: Getting infos from filenames instead of mediainfo
- Replies: 6
- Views: 7373
Re: Getting infos from filenames instead of mediainfo
You can use match() to match arbitrary patterns from the file name. e.g. match 720p / 1080p / etc patterns from the current file name: 1080p { fn.match(/[0-9]{3,4}p/) } e.g. match an entire section of the current file name: 1080p.AMZN.WEB-DL.DDP5.1.H.264-TEPES { fn.match(/[0-9]{3,4}p.+/) } For ...
- 07 Jun 2021, 09:32
- Forum: Episode / Movie Naming Scheme
- Topic: Getting infos from filenames instead of mediainfo
- Replies: 6
- Views: 7373
Getting infos from filenames instead of mediainfo
Hi, So I want to rename some files in a mounted Google Drive without many API calls and the slow process But I want FileBot to guess things like {vf}, {source}, {aco}, {channels}, {ac}, {group} from filename instead of mediainfo, is it possible? Example of filename: Mare.of.Easttown.S01E01.Miss.Lady ...
- 23 May 2021, 22:14
- Forum: Episode / Movie Naming Scheme
- Topic: {source} WEB-DL
- Replies: 2
- Views: 3428
Re: {source} WEB-DL
I didn't know about it's existence, thanksrednoah wrote: ↑23 May 2021, 14:47 Have you tried the {vs} source class binding yet?
viewtopic.php?t=11265

- 23 May 2021, 13:54
- Forum: Episode / Movie Naming Scheme
- Topic: {source} WEB-DL
- Replies: 2
- Views: 3428
{source} WEB-DL
Is it possible to only get WEB-DL when using {source} instead NF.WEB-DL or AMZN.WEB-DL?
- 24 Jun 2020, 15:06
- Forum: Episode / Movie Naming Scheme
- Topic: Keep the original folder name
- Replies: 1
- Views: 2164
Keep the original folder name
Hi all, I just want to know if there's a way to keep the original folder name of a TV show like the example bellow I'm using: {ny}/{media.filename}/{media.filename} https://i.imgur.com/iM2Ye5m.png But i want the folder in the middle with the blue color containing the episodes to have the same name ...
- 01 Jun 2018, 17:50
- Forum: Windows
- Topic: Raname folders only and keep releases names!
- Replies: 8
- Views: 5485
Re: Raname folders only and keep releases names!
@rednoah thanks {media.filename} worked fine x)
- 31 May 2018, 17:16
- Forum: Windows
- Topic: Raname folders only and keep releases names!
- Replies: 8
- Views: 5485
Re: Raname folders only and keep releases names!
@rednoah https://i.imgur.com/G5cuped.png this is an example i want engsub.srt to be > La.Haine.1995.iNTERNAL.720p.BluRay.x264-LiBRARiANS.eng.srt and arasub.srt to be > La.Haine.1995.iNTERNAL.720p.BluRay.x264-LiBRARiANS.ara.srt i'm using > Filebot/{n} ({y}) (source)/{fn}{".$lang"} note : using ...
- 31 May 2018, 04:37
- Forum: Windows
- Topic: Raname folders only and keep releases names!
- Replies: 8
- Views: 5485
Re: Raname folders only and keep releases names!
@rednoah {f.subtitle ? fn.nameWithoutExtension + '.' + lang : fn} didnt work form me or i dont know how to use it should i use it like this Filebot/{n} ({y})/{f.subtitle ? fn.nameWithoutExtension + '.' + lang : fn} ? because using this naming scheme the movie name is the fn but the sub name didnt ...
- 30 May 2018, 04:03
- Forum: Windows
- Topic: Raname folders only and keep releases names!
- Replies: 8
- Views: 5485
Re: Raname folders only and keep releases names!
So i'm using Filebot/{n} ({y}) ({vf} - {source} - {group})/{fn}{".$lang"} now but the folder have two subs fr.srt and en.eng using this naming scheme subs got renamed to filename.fr.fr.srt and filename.en.en.srt without it subs got filename.srt and filename.srt so one will overwrite the other how to ...
- 29 May 2018, 19:29
- Forum: Windows
- Topic: Raname folders only and keep releases names!
- Replies: 8
- Views: 5485
Raname folders only and keep releases names!
Hi all,ive read the Binding Reference on https://www.filebot.net/naming.html and cant find a releasename variable is there a way to rename folders only and keeping releases name? something like this : Filebot/{n} ({y})/{relasename}{".$lang"} The folder will be like this : Movie Name (Year)/Title.Of ...