Movie
Your Target/{f =~ /(?i)3D|3\.D|3\-D/ ? '3D Movies' : vf =~ /2160p/ ? '4K Movies' : 'Movies'}/{AZ}/
{ny}
/{ny} - [{vf} {vc} {hdr}
{
def codecList =
[
'MP3' : 'MP3',
'PCM' : 'PCM',
'AAC LC' : 'AAC',
'AAC LC SBR' : 'AAC',
'AC 3' : 'AC3',
'AC 3 Dep' : 'EAC3',
'E AC 3' : 'EAC3',
'E AC ...
Search found 70 matches
- 21 Nov 2021, 18:16
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
- 20 Nov 2021, 16:29
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
- 20 Nov 2021, 16:28
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
The Final naming


- 20 Nov 2021, 16:26
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
Initial Subs Renaming


- 20 Nov 2021, 16:24
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
Hi Renoah
After using all the info you have supplied I have a great way (workaround) that im very happy with.
I have used the presets function.
Initially I run a preset that renames the subtitles to match the file name in the folder with the (digit) on the end.
Then I run the next preset which is my ...
After using all the info you have supplied I have a great way (workaround) that im very happy with.
I have used the presets function.
Initially I run a preset that renames the subtitles to match the file name in the folder with the (digit) on the end.
Then I run the next preset which is my ...
- 19 Nov 2021, 11:47
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles

this is on strict mode
- 19 Nov 2021, 11:44
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
Thanks for the info Rednoah that was easy.
The format is naming how I want it is pickng up the wrong episode.
This is set on opportunistic using this format
The files are in the f=same folder called Friends
\\192.168.0.160\Multimedia\TV Shows/{n}/Season {s00}/{episode}{" [$vf $vc "}{hdr}
{
def ...
The format is naming how I want it is pickng up the wrong episode.
This is set on opportunistic using this format
The files are in the f=same folder called Friends
\\192.168.0.160\Multimedia\TV Shows/{n}/Season {s00}/{episode}{" [$vf $vc "}{hdr}
{
def ...
- 19 Nov 2021, 11:41
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
- 19 Nov 2021, 10:15
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
Hi Rednoah, might seem a strange question but Im unsure how to upload a screenshot?
- 18 Nov 2021, 17:55
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
Rednoah I added this to the format.
{subt}
{if (f.subtitle) '(' + { fn.matchAll(/\d+/).last() } + ')' }
If i try and rename any version of the subititle with the movie it works perfectly. If its only 1 subititle.
If i try and rename anymore than 1 with the movie it does not see them, does the code ...
{subt}
{if (f.subtitle) '(' + { fn.matchAll(/\d+/).last() } + ')' }
If i try and rename any version of the subititle with the movie it works perfectly. If its only 1 subititle.
If i try and rename anymore than 1 with the movie it does not see them, does the code ...
- 16 Nov 2021, 20:59
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
So trying to break this down to understand better to prove out with just subtitles like
2_English
3_English
It will only rename 1 file not multiples
2_English
3_English
Code: Select all
{ if (f.subtitle) '(' + fn.match(/^(\d+)_/) + ')' }- 16 Nov 2021, 20:44
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
So this is the full string??
Code: Select all
{ if (f.subtitle) '(' + fn.match(/_(\d{1,2})$|\((\d{1,2})\)$|^(\d+)_$/) + ')' }- 16 Nov 2021, 20:07
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
this is as far as i got
Code: Select all
_(\d{1,2})$|\((\d{1,2})\)$|\_(\d+)$\)- 16 Nov 2021, 20:02
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
Hi Kim
SO i find this very confusing
Why does this repeat?
im trying but i think i have become even more confused if that possible!
SO i find this very confusing
Code: Select all
_(\d{1,2})$|\((\d{1,2})\)$Code: Select all
_(\d{1,2})$ and then again (\d{1,2})\) - 16 Nov 2021, 13:49
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
Hi Kim
Thank you I'm having good fun not getting anywhere!
I have tried but just cant get it to work.
Appreciate the time setting the file up
Thank you I'm having good fun not getting anywhere!
I have tried but just cant get it to work.
Appreciate the time setting the file up
- 15 Nov 2021, 20:01
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
Hi
I have just come across another format
Is it possible to add another option to resolve this..?
2_English
3_English
4_English
Any help appreciated as always
I have just come across another format
Is it possible to add another option to resolve this..?
2_English
3_English
4_English
Any help appreciated as always
- 14 Nov 2021, 19:46
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
Also this format works just great in Emby
- 14 Nov 2021, 19:41
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
Hi
Its working! sorry Kim & Rednoah I placed it in the wrong location. I put it before {[source]}{subt}
Switched around and its worked perfectly.
My bad
Thank you both yet again
Super happy with the format I use
Its working! sorry Kim & Rednoah I placed it in the wrong location. I put it before {[source]}{subt}
Switched around and its worked perfectly.
My bad
Thank you both yet again
Super happy with the format I use
- 13 Nov 2021, 22:39
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Re: Renaming Multiple Same Language Subtitles
Hi
I tried but it just gives the same name using the code above
Movie Name (2021) - [1080p x265 AAC 5.1] [BluRay].eng
Movie Name (2021) - [1080p x265 AAC 5.1] [BluRay].eng
Movie Name (2021) - [1080p x265 AAC 5.1] [BluRay].eng
it does not use the number???
I tried but it just gives the same name using the code above
Movie Name (2021) - [1080p x265 AAC 5.1] [BluRay].eng
Movie Name (2021) - [1080p x265 AAC 5.1] [BluRay].eng
Movie Name (2021) - [1080p x265 AAC 5.1] [BluRay].eng
it does not use the number???
- 13 Nov 2021, 10:22
- Forum: Scripting and Automation
- Topic: Renaming Multiple Same Language Subtitles
- Replies: 36
- Views: 45898
Renaming Multiple Same Language Subtitles
Hi
Is it possible to keep all the language versions of subtitles?
Some files arrive with english_2, english_3, english_9 etc
I would be very happy is it could be named accordingly....
Movie Name (2021) - [1080p x265 AAC 5.1] [BluRay]
Movie Name (2021) - [1080p x265 AAC 5.1] [BluRay].eng(1)
Movie ...
Is it possible to keep all the language versions of subtitles?
Some files arrive with english_2, english_3, english_9 etc
I would be very happy is it could be named accordingly....
Movie Name (2021) - [1080p x265 AAC 5.1] [BluRay]
Movie Name (2021) - [1080p x265 AAC 5.1] [BluRay].eng(1)
Movie ...
- 20 May 2020, 21:27
- Forum: Help and Support
- Topic: Subtitle stored in different folder to movie
- Replies: 12
- Views: 9105
Re: Subtitle stored in different folder to movie
Hi Rednoah
I have been playing with the plex.name and tail. Also with Kodi. Trying to learn some new things. I then changed my original script from {kodi.name} to {ny}
Hey presto the orphan subs are named the same as the movie file. I added {subt} to the end too.
All working perfectly. Thank you.
I have been playing with the plex.name and tail. Also with Kodi. Trying to learn some new things. I then changed my original script from {kodi.name} to {ny}
Hey presto the orphan subs are named the same as the movie file. I added {subt} to the end too.
All working perfectly. Thank you.
- 18 May 2020, 10:19
- Forum: Help and Support
- Topic: Subtitle stored in different folder to movie
- Replies: 12
- Views: 9105
Re: Subtitle stored in different folder to movie
Yes im using the AMC script.
I dont use subtitles unless its required for a foreign film.
So if I can prevent the subtitles being processed then it will stop the mess of my folders it makes.
So if i add
--def ignore=".srt|.idx|.sub"
Should fix this?
I dont use subtitles unless its required for a foreign film.
So if I can prevent the subtitles being processed then it will stop the mess of my folders it makes.
So if i add
--def ignore=".srt|.idx|.sub"
Should fix this?
- 18 May 2020, 08:50
- Forum: Help and Support
- Topic: Subtitle stored in different folder to movie
- Replies: 12
- Views: 9105
Re: Subtitle stored in different folder to movie
Is it possible to ignore subtitles when naming? To not transfer from downloaded folder?
- 08 May 2020, 23:39
- Forum: Help and Support
- Topic: Subtitle stored in different folder to movie
- Replies: 12
- Views: 9105
Re: Subtitle stored in different folder to movie
That makes sense and works thank you. Subtitles are being moved correctly now.
Always helpful Rednoah
Always helpful Rednoah
- 07 May 2020, 19:35
- Forum: Help and Support
- Topic: Subtitle stored in different folder to movie
- Replies: 12
- Views: 9105
Re: Subtitle stored in different folder to movie
Thanks Rednoah. Will using {Plex} still allow the movies to be stored into the correct folders i.e 4k 3d and movies?
- 06 May 2020, 12:59
- Forum: Help and Support
- Topic: Subtitle stored in different folder to movie
- Replies: 12
- Views: 9105
Re: Subtitle stored in different folder to movie
I just don't understand enough to be honest!
- 06 May 2020, 12:30
- Forum: Help and Support
- Topic: Subtitle stored in different folder to movie
- Replies: 12
- Views: 9105
Re: Subtitle stored in different folder to movie
Thanks for the information.
Ill take your advice and stick to the default format as described.
Thank you
Ill take your advice and stick to the default format as described.
Thank you
- 06 May 2020, 10:49
- Forum: Help and Support
- Topic: Subtitle stored in different folder to movie
- Replies: 12
- Views: 9105
Subtitle stored in different folder to movie
Hi
I have an issue with subtitles being moved into separate folder from movies.
My current script...
\\192.168.0.160\Multimedia/Movies/{f =~ /(?i)3D|3\.D|3\-D/ ? '3D Movies' : vf =~ /2160p/ ? '4K Movies' : 'Movies'}/{AZ}/
{kodi.name} [{director}] [{imdbid}]
/{kodi.name} [{vf} {vc} {hdr}
{
def ...
I have an issue with subtitles being moved into separate folder from movies.
My current script...
\\192.168.0.160\Multimedia/Movies/{f =~ /(?i)3D|3\.D|3\-D/ ? '3D Movies' : vf =~ /2160p/ ? '4K Movies' : 'Movies'}/{AZ}/
{kodi.name} [{director}] [{imdbid}]
/{kodi.name} [{vf} {vc} {hdr}
{
def ...
- 10 Jun 2019, 08:37
- Forum: Scripting and Automation
- Topic: .sub and .idx files moved to incorrect location
- Replies: 8
- Views: 5020
Re: .sub and .idx files moved to incorrect location
Hi Rednoah
Just an update. The problem is now fixed.
I switched my naming scheme to {kodi.name} Keeping the 3d,4k and standard movie folders.
The .sub and .idx correctly relocate into movie folder.
Thank you
Just an update. The problem is now fixed.
I switched my naming scheme to {kodi.name} Keeping the 3d,4k and standard movie folders.
The .sub and .idx correctly relocate into movie folder.
Thank you
- 08 Jun 2019, 15:36
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Re: Dolby Atmos and DTS-X Naming
Thanks Kim
Followed the link viewtopic.php?f=5&t=5285&p=43844#p43844
Using version 4 and producing great results, edited the codec list to suit my preference.
Thank you
Followed the link viewtopic.php?f=5&t=5285&p=43844#p43844
Using version 4 and producing great results, edited the codec list to suit my preference.
Thank you
- 07 Jun 2019, 22:54
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Re: Dolby Atmos and DTS-X Naming
Hi
So the naming of DTS-X files has changed recently, instead i get DTS-HD Master Audio? I have checked file with Mediainfo and can see the commercial name is this... DTS-HD Master Audio is this right?
Im using ver3.1 of the audio naming by kim in this post, it used to rename to DTS-HD.X
Is it ...
So the naming of DTS-X files has changed recently, instead i get DTS-HD Master Audio? I have checked file with Mediainfo and can see the commercial name is this... DTS-HD Master Audio is this right?
Im using ver3.1 of the audio naming by kim in this post, it used to rename to DTS-HD.X
Is it ...
- 31 May 2019, 16:45
- Forum: Scripting and Automation
- Topic: .sub and .idx files moved to incorrect location
- Replies: 8
- Views: 5020
- 31 May 2019, 15:59
- Forum: Scripting and Automation
- Topic: .sub and .idx files moved to incorrect location
- Replies: 8
- Views: 5020
Re: .sub and .idx files moved to incorrect location
Thank you, just reading through a new (I think) binding of {aco} now accounts for dolby atmos....
I do like the custom format and I will live with the problem for now. I use the {kodi} for tv shows
If I use the {kodi} for movies can I still have different movies types i.e 4k HD and 3d go into ...
I do like the custom format and I will live with the problem for now. I use the {kodi} for tv shows
If I use the {kodi} for movies can I still have different movies types i.e 4k HD and 3d go into ...
- 31 May 2019, 15:25
- Forum: Scripting and Automation
- Topic: .sub and .idx files moved to incorrect location
- Replies: 8
- Views: 5020
Re: .sub and .idx files moved to incorrect location
Hi Rednoah,
The .idx and .sub are named correctly just not in the correct location.
Is this a naming format problem, not something easier such as the utorrent program call text?
Ill have a good read and see if I canspot the problem, TV shows and Movies all work perfectly, its just the idx and sub ...
The .idx and .sub are named correctly just not in the correct location.
Is this a naming format problem, not something easier such as the utorrent program call text?
Ill have a good read and see if I canspot the problem, TV shows and Movies all work perfectly, its just the idx and sub ...
- 31 May 2019, 12:29
- Forum: Scripting and Automation
- Topic: .sub and .idx files moved to incorrect location
- Replies: 8
- Views: 5020
.sub and .idx files moved to incorrect location
Hi
I'm totally stuck with renaming locations of just the .idx and .sub files included with a movie
Any help appreciated....
The .idx and .sub file is saved into \\192.168.0.150/Multimedia/Movies/
Not into the correct location \\192.168.0.150/Multimedia/Movies/Movies/
All the rest of the artwork ...
I'm totally stuck with renaming locations of just the .idx and .sub files included with a movie
Any help appreciated....
The .idx and .sub file is saved into \\192.168.0.150/Multimedia/Movies/
Not into the correct location \\192.168.0.150/Multimedia/Movies/Movies/
All the rest of the artwork ...
- 23 Nov 2018, 11:11
- Forum: Windows
- Topic: Retrieving just artwork for movie files
- Replies: 2
- Views: 2880
Re: Retrieving just artwork for movie files
Hi Rednoah. Sorry what I had written was a little confusing. I used filebot to rename my movies manually with the GUI. So they are named correctly. The link you have given me looks like it would work. I'll give it a try.
Thanks
Thanks
- 22 Nov 2018, 16:28
- Forum: Windows
- Topic: Retrieving just artwork for movie files
- Replies: 2
- Views: 2880
Retrieving just artwork for movie files
Hi
I use the AMC script to name movies and TV shows. It works perfectly. I have the artwork=y enabled to retrieve artwork. Which also works great. My question is....
Is it possible to retrieve the artwork for files prior to using file it? How?
Thanks
I use the AMC script to name movies and TV shows. It works perfectly. I have the artwork=y enabled to retrieve artwork. Which also works great. My question is....
Is it possible to retrieve the artwork for files prior to using file it? How?
Thanks
- 08 Oct 2018, 15:28
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
Hi Rednoah, just want to say thanks. The 3D movies I have are now sorted into the correct folder. Works perfectly 
- 07 Oct 2018, 12:41
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
Thanks rednoah,
That has worked perfectly.
I just tried with a batch of different files. All going to the correct location.
That has worked perfectly.
I just tried with a batch of different files. All going to the correct location.
- 06 Oct 2018, 20:40
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
Thank you. That does make sense but as you are relying on the file containing 3d. Can you add extra options? Say 3-d or 3.d ? Just to give more chance?
Is this correct ?
Thanks again Rednoah
Is this correct ?
Code: Select all
{f =~ /3D|3.d|3-d/ ? '3D Movies' : vf =~ /2160p/ ? 'UHD Movies' : 'Multimedia/Movies'}
- 06 Oct 2018, 16:20
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
\\192.168.0.111\{vf =~ /2160p/ ? 'UHD Movies' : 'Multimedia/Movies'}/{ny} [{certification}]/{n.colon(' - ')} ({y}) [ {vf} {vc} {bitdepth}bit {ac} {channels} ]
With moving fIles to different folders using resolution is it also possible to add another folder for just 3d movies?
E.g depending on ...
With moving fIles to different folders using resolution is it also possible to add another folder for just 3d movies?
E.g depending on ...
- 06 Oct 2018, 11:25
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Re: Dolby Atmos and DTS-X Naming
H Kim
I apologise for giving a poor example of TrueHD.AC3
The errors I actually got were. TrueHD.TrueHD+Atmos 7.1 and also AC3+.Atmos 7.1
I do have the latest versions it was just error on my part.
Version 3.1 now works perfectly.
Thank you so much. I will try and learn some more with your advice.
I apologise for giving a poor example of TrueHD.AC3
The errors I actually got were. TrueHD.TrueHD+Atmos 7.1 and also AC3+.Atmos 7.1
I do have the latest versions it was just error on my part.
Version 3.1 now works perfectly.
Thank you so much. I will try and learn some more with your advice.
- 03 Oct 2018, 07:43
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Re: Dolby Atmos and DTS-X Naming
Another question, is it possible to have a few options with replaceAll e.g TrueHD.TrueHD and also TrueHD.AC3 so if any option comes up you can add it into
{audioCodec.replaceAll(/TrueHD.TrueHD/, 'TrueHD')}
Thank you
{audioCodec.replaceAll(/TrueHD.TrueHD/, 'TrueHD')}
Thank you
- 03 Oct 2018, 05:06
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Re: Dolby Atmos and DTS-X Naming
Thank you
- 02 Oct 2018, 22:20
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Re: Dolby Atmos and DTS-X Naming
Hi Kim I have tried version 3. It works well but sometimes it will name a file
\\192.168.0.111/uhd movies/Avatar (2009) [PG-13] [☆7.3] [162mins]/Avatar (2009) [ 2160p x265 10bit TrueHD.TrueHD+Atmos 7.1 ]
Its only on some files? any suggestions? every other format works.
I just tried version 2 ...
\\192.168.0.111/uhd movies/Avatar (2009) [PG-13] [☆7.3] [162mins]/Avatar (2009) [ 2160p x265 10bit TrueHD.TrueHD+Atmos 7.1 ]
Its only on some files? any suggestions? every other format works.
I just tried version 2 ...
- 02 Oct 2018, 07:43
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Re: Dolby Atmos and DTS-X Naming
wow thank you kim for all the effort, I will try again later.
I honestly don't understand how you do this!
I honestly don't understand how you do this!
- 01 Oct 2018, 21:48
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Re: Dolby Atmos and DTS-X Naming
so I gave
{def best = any{audio.max{it.StreamSize.toInteger()}}{audio}; (ac == 'MP3'|| ac == 'AAC'|| ac == 'EAC3') ? ac : any{(best.Codec+'.'+best.FormatProfile.replaceAll(/\/.*/))}{audio.Codec.join()}}
that worked by listing all the audio files names next to each other. e.g DTS-HDDTSAC3AC3
This is ...
{def best = any{audio.max{it.StreamSize.toInteger()}}{audio}; (ac == 'MP3'|| ac == 'AAC'|| ac == 'EAC3') ? ac : any{(best.Codec+'.'+best.FormatProfile.replaceAll(/\/.*/))}{audio.Codec.join()}}
that worked by listing all the audio files names next to each other. e.g DTS-HDDTSAC3AC3
This is ...
- 01 Oct 2018, 17:52
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Re: Dolby Atmos and DTS-X Naming
Hi Kim
Thank you for all the information.
Does the last piece of code find the biggest file and rename? Or does it display the name of the audio file as displayed in mediainfo. My mind is a little blown how in-depth this is.
Generally my files are named DTS 5.1, DTS 7.1, Dolby TrueHD etc With the ...
Thank you for all the information.
Does the last piece of code find the biggest file and rename? Or does it display the name of the audio file as displayed in mediainfo. My mind is a little blown how in-depth this is.
Generally my files are named DTS 5.1, DTS 7.1, Dolby TrueHD etc With the ...
- 01 Oct 2018, 13:48
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Re: Dolby Atmos and DTS-X Naming
Any possible guidance on how to find the largest audio file from mediainfo?
- 30 Sep 2018, 13:35
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Re: Dolby Atmos and DTS-X Naming
That's excellent. I didn't realise you can pull so much info.
So going with the biggest audio file would make sense as it's most likely to be the best audio file with Atmos/dts-x
Now I just need to work out how to make this happen!
Thank you
So going with the biggest audio file would make sense as it's most likely to be the best audio file with Atmos/dts-x
Now I just need to work out how to make this happen!
Thank you
- 30 Sep 2018, 10:06
- Forum: Scripting and Automation
- Topic: Dolby Atmos and DTS-X Naming
- Replies: 21
- Views: 21600
Dolby Atmos and DTS-X Naming
Hi
With 4k Movies can filebot recognise it is an Dolby Atmos or DTS-X soundtrack, My files are always named TrueHD 7.1
using the {ac} {channels}
Remux 4k files can have a few audio streams, is it possible for filebot to find the biggest/best audio and name accordingly? Depending if it Atmos or DTS-X ...
With 4k Movies can filebot recognise it is an Dolby Atmos or DTS-X soundtrack, My files are always named TrueHD 7.1
using the {ac} {channels}
Remux 4k files can have a few audio streams, is it possible for filebot to find the biggest/best audio and name accordingly? Depending if it Atmos or DTS-X ...
- 31 Aug 2018, 11:41
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
Don't worry I have 
- 31 Aug 2018, 11:31
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
Perfect! I think I'm completely sorted now Rednoah.
Amazing software!
Amazing software!
- 31 Aug 2018, 08:31
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
Another issue I sometime get with
The certification doesn't always get filled in? Is there a way to remove brackets if it isn't available otherwise I get left with []
Thanks
Code: Select all
{ny} [{certification}]/{n.colon(' - ')} ({y}) [ {vf} {vc} {bitdepth}bit {ac} {channels} ]
Thanks
- 31 Aug 2018, 08:29
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
Code: Select all
\\192.168.0.111\{vf =~ /2160p/ ? 'UHD Movies' : 'Multimedia/Movies'}/{ny} [{certification}]/{n.colon(' - ')} ({y}) [ {vf} {vc} {bitdepth}bit {ac} {channels} ]
- 30 Aug 2018, 15:46
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
ok perfect. thanks
- 30 Aug 2018, 14:03
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
should I still leave the --output "//192.168.0.111/Multimedia" in the utorrent run program? Or will the movie.groovy file sort that now?
- 30 Aug 2018, 12:07
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
Oh boy I have just realised I'm rubbish at this! HAHAHAHA
Yep I can see how it should work now that makes sense...
Ill give it a try tonight.
Thanks for helping a noob..... again Rednoah
Yep I can see how it should work now that makes sense...
Ill give it a try tonight.
Thanks for helping a noob..... again Rednoah
- 30 Aug 2018, 11:27
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
I have it working so movies are separated depending if 2160p/uhd into its own folder or anything else into the movie folder. Brilliant!
\\192.168.0.111/{vf =~ /2160p|uhd|UHD/ ? 'uhd movies' : 'movies'}/{ny} [{certification}]/{n.colon(' - ')} ({y}) [ {vf} {vc} {bitdepth}bit {ac} {channels} ]
I ...
\\192.168.0.111/{vf =~ /2160p|uhd|UHD/ ? 'uhd movies' : 'movies'}/{ny} [{certification}]/{n.colon(' - ')} ({y}) [ {vf} {vc} {bitdepth}bit {ac} {channels} ]
I ...
- 23 Aug 2018, 07:42
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
I have worked it out! Thank you 
- 22 Aug 2018, 22:30
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Re: Help! Seperating Movies into different folders HD & 4k
Hi Rednoah
Thanks for the info. I would like to use the height method as that seems best for me.
Would I need to add the code to the movie.groovy file at the start?
Not sure where it is supposed to go?
Many thanks
Thanks for the info. I would like to use the height method as that seems best for me.
Would I need to add the code to the movie.groovy file at the start?
Not sure where it is supposed to go?
Many thanks
- 22 Aug 2018, 13:03
- Forum: Scripting and Automation
- Topic: Help! Seperating Movies into different folders HD & 4k
- Replies: 42
- Views: 39940
Help! Seperating Movies into different folders HD & 4k
Hi
I would like to be able to send movies to different folders depending whether is 4k or hd.
I currently use this....
filebot -script fn:amc --output "\\192.168.0.111\Multimedia" --action move --conflict auto -non-strict --def clean=y --def subtitles=en --def movieFormat=@"C:\Filebot Templates ...
I would like to be able to send movies to different folders depending whether is 4k or hd.
I currently use this....
filebot -script fn:amc --output "\\192.168.0.111\Multimedia" --action move --conflict auto -non-strict --def clean=y --def subtitles=en --def movieFormat=@"C:\Filebot Templates ...
- 01 May 2017, 08:34
- Forum: Windows
- Topic: Extracting video information
- Replies: 12
- Views: 7523
Re: Extracting video information
Hi that's brilliant. Thanks.
Currently I am only practicing and testing on my pc. Once I am fully happy the final save locations are going to change so the information is very valuable when I switch. The AMC script is pretty amazing. Next I think I will try triggering Kodi to update library. --def ...
Currently I am only practicing and testing on my pc. Once I am fully happy the final save locations are going to change so the information is very valuable when I switch. The AMC script is pretty amazing. Next I think I will try triggering Kodi to update library. --def ...
- 01 May 2017, 08:00
- Forum: Windows
- Topic: Extracting video information
- Replies: 12
- Views: 7523
Re: Extracting video information
Thank you I will give this a try so to double check my path should look like this
CHA0S
Code: Select all
--def unsortedFormat="C:/Media/Unsorted/{file.structurePathTail}"
- 30 Apr 2017, 16:02
- Forum: Windows
- Topic: Extracting video information
- Replies: 12
- Views: 7523
Re: Extracting video information
So further on from the initial subject and thanks for the help Rednoah!
The amc script is working and I have successfully added my naming format into the custom format .groovy files
Very happy this is working now but......
If the TV Show or movie doesn't get a match it gets put into an unsorted ...
The amc script is working and I have successfully added my naming format into the custom format .groovy files
Very happy this is working now but......
If the TV Show or movie doesn't get a match it gets put into an unsorted ...
- 23 Apr 2017, 16:50
- Forum: Windows
- Topic: Extracting video information
- Replies: 12
- Views: 7523
Re: Extracting video information
Thank you Rednoah for your help.
I have been reading through the posts and now have a better understanding and now learning.
I think in a short time ill get this nailed.
Cheers and love Filebot
I have been reading through the posts and now have a better understanding and now learning.
I think in a short time ill get this nailed.
Cheers and love Filebot
- 22 Apr 2017, 17:37
- Forum: Windows
- Topic: Extracting video information
- Replies: 12
- Views: 7523
Re: Extracting video information
Hi
So I have been playing with Filebot today and well.... got stuck.
I created the .groovy files and copied the following into the relative file,should the groovy file have .txt on the end?
MovieFormat.groovy
{ny}/{n.colon(' - ')} ({y}){' CD'+pi} [ {vf} {vc} {bitdepth}bit {ac} {channels ...
So I have been playing with Filebot today and well.... got stuck.
I created the .groovy files and copied the following into the relative file,should the groovy file have .txt on the end?
MovieFormat.groovy
{ny}/{n.colon(' - ')} ({y}){' CD'+pi} [ {vf} {vc} {bitdepth}bit {ac} {channels ...
- 21 Apr 2017, 21:34
- Forum: Windows
- Topic: Extracting video information
- Replies: 12
- Views: 7523
Re: Extracting video information
Hi
So after uninstalling and running ccleaner, checking folders Filebot is working as expected. My format is working perfectly. Thank you for the help on the matter.
My template is as follows:
D:\TV Shows\{n}/{'Season '+s}/{n} - {s00e00} - {t} [ {vf} {vc} {bitdepth}bit {ac} {channels} ]
D ...
So after uninstalling and running ccleaner, checking folders Filebot is working as expected. My format is working perfectly. Thank you for the help on the matter.
My template is as follows:
D:\TV Shows\{n}/{'Season '+s}/{n} - {s00e00} - {t} [ {vf} {vc} {bitdepth}bit {ac} {channels} ]
D ...
- 21 Apr 2017, 15:28
- Forum: Windows
- Topic: Extracting video information
- Replies: 12
- Views: 7523
Re: Extracting video information
Hi thanks for getting back to me
Yes its the same file when i get home ill post the template that i use.
I was using a version from the website before switching to the store version to support the developer/s. I uninstalled the initial version first though. I will start fresh tonight and make sure ...
Yes its the same file when i get home ill post the template that i use.
I was using a version from the website before switching to the store version to support the developer/s. I uninstalled the initial version first though. I will start fresh tonight and make sure ...
- 21 Apr 2017, 12:26
- Forum: Windows
- Topic: Extracting video information
- Replies: 12
- Views: 7523
Extracting video information
Hi
Im fairly new to using Filebot. Any help would be appreciated or a point in the right direction.
Im a little stuck when renaming files to include the video information as it doesnt always work.
I am using windows 10 pro latest version and I have purchased filebot from the windows store.
I use ...
Im fairly new to using Filebot. Any help would be appreciated or a point in the right direction.
Im a little stuck when renaming files to include the video information as it doesnt always work.
I am using windows 10 pro latest version and I have purchased filebot from the windows store.
I use ...
