Search found 80 matches
- 07 Jan 2024, 17:23
- Forum: Windows
- Topic: Is there a way to add Producer, Director, etc to movie names?
- Replies: 4
- Views: 3807
Re: Is there a way to add Producer, Director, etc to movie names?
Thanks.. i got it.. movie i was testing with didn't have a producer.. 
- 04 Jan 2024, 19:11
- Forum: Windows
- Topic: Is there a way to add Producer, Director, etc to movie names?
- Replies: 4
- Views: 3807
Re: Is there a way to add Producer, Director, etc to movie names?
Thanks... i added the above code to find first producer to my string but it doesn't show anything
Code: Select all
/processed/{y}/{n} ({y}) - [{info.certifications.US}, {genre}, {y}]/{n} ({y})({minutes} Min){ info.crew.find{ it.job =~ /Producer/ }.name }- 04 Jan 2024, 17:41
- Forum: Windows
- Topic: Is there a way to add Producer, Director, etc to movie names?
- Replies: 4
- Views: 3807
Is there a way to add Producer, Director, etc to movie names?
Hi, Is there a way to add Producer, Director, etc to movie names? I have a lot of kung-fu movies that i would like to know who produced them? Shaw Brothers, etc.. Thanks.
- 03 Jan 2024, 14:14
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Re: Episode count on seasons not working
Sorry, i apologize.. this works as intended.. it creates directories with complete and incomplete as needed... it's multiple directories per show, but works.
I was looking to get just one show directory with either complete or incomplete, then i would look inside the incomplete one to see which ...
I was looking to get just one show directory with either complete or incomplete, then i would look inside the incomplete one to see which ...
- 03 Jan 2024, 02:47
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Re: Episode count on seasons not working
Well, that's what i wanted the code to tell me... the test show i was using, was incomplete... it was missing 2 seasons but it said it was complete. The code's complete/incomplete works but for seasons, not the show... 
- 02 Jan 2024, 20:52
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Re: Episode count on seasons not working
So there's no way of telling if a Show is incomplete or not? I loaded all the files from the show but it's says incomplete because 2 seasons are missing...
- 02 Jan 2024, 20:38
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Re: Episode count on seasons not working
oh.. wait, does this only work if there's a folder with season XX already? I did a different show and on one season it says incomplete because that season is missing episode 7... but the show as a whole is missing 2 seasons...
any workaround? Thanks.
- 02 Jan 2024, 20:28
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Re: Episode count on seasons not working
- 02 Jan 2024, 19:30
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Re: Episode count on seasons not working
Adding [complete] vs [incomplete] works like this:
{
model.episodes.flatten().containsAll(episodelist.findAll{ it.e && it.s == s }.episode) ? ' [complete]' : ' [incomplete]'
}
:arrow: https://www.filebot.net/forums/viewtopic.php?t=13881
[/quote]
Ok, added this to my string and it's putting ...
{
model.episodes.flatten().containsAll(episodelist.findAll{ it.e && it.s == s }.episode) ? ' [complete]' : ' [incomplete]'
}
:arrow: https://www.filebot.net/forums/viewtopic.php?t=13881
[/quote]
Ok, added this to my string and it's putting ...
- 02 Jan 2024, 19:20
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Re: Episode count on seasons not working
Thank you!
- 02 Jan 2024, 17:33
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Re: Episode count on seasons not working
Any ideas?
- 02 Jan 2024, 16:25
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Re: Episode count on seasons not working
this is my current string:
/Processed/{n} ({episodelist.size()}EP) [{info.certifications.usa}, {genre}, {y}]/{'Season ' +s} ({episodelist.findAll{ s == it.s }.e.max()})EP /{n} - {s00e00} - {t.replaceAll(/[!?.]+$/).replaceAll(/[`´‘’ʻ]/, /'/).replacePart(', Part $1')} ({megabytes})({minutes} Min ...
/Processed/{n} ({episodelist.size()}EP) [{info.certifications.usa}, {genre}, {y}]/{'Season ' +s} ({episodelist.findAll{ s == it.s }.e.max()})EP /{n} - {s00e00} - {t.replaceAll(/[!?.]+$/).replaceAll(/[`´‘’ʻ]/, /'/).replacePart(', Part $1')} ({megabytes})({minutes} Min ...
- 02 Jan 2024, 16:24
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Re: Episode count on seasons not working
Ohh.. what should i use then? I just want the series name to have the total episodes (without specials) for regular series and season counts, and maybe with specials for anime series with season counts.
I also saw somewhere that we can add whether a series is complete or incomplete...
do you ...
I also saw somewhere that we can add whether a series is complete or incomplete...
do you ...
- 02 Jan 2024, 16:16
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Re: Episode count on seasons not working
Thanks.. i just found
and it works!
Code: Select all
{episodelist.findAll{ s == it.s }.e.max()}- 02 Jan 2024, 15:23
- Forum: Windows
- Topic: Episode count on seasons not working
- Replies: 18
- Views: 9034
Episode count on seasons not working
Hello, i have this naming format and the show name gives me the total episode but the season episode count is not working and returning 0. How can i fix this?
/Processed/{n} ({episodelist.size()}EP) [{info.certifications.usa}, {genre}, {y}]/{'Season ' +s} - {episodelist.count{ it.episode && it ...
/Processed/{n} ({episodelist.size()}EP) [{info.certifications.usa}, {genre}, {y}]/{'Season ' +s} - {episodelist.count{ it.episode && it ...
- 07 Dec 2023, 14:52
- Forum: Windows
- Topic: Is Certification no longer valid? (using TheTVDB)
- Replies: 11
- Views: 4603
Re: Is Certification no longer valid? (using TheTVDB)
Great! Thank a lot! Hope you are well.
- 06 Dec 2023, 21:18
- Forum: Windows
- Topic: Is Certification no longer valid? (using TheTVDB)
- Replies: 11
- Views: 4603
Re: Is Certification no longer valid? (using TheTVDB)
That worked!!
One last thing, after i rename, it says something about adding attributes... it goes away so it's hard to see.. what is that and can i just ignore it?
- 06 Dec 2023, 21:09
- Forum: Windows
- Topic: Is Certification no longer valid? (using TheTVDB)
- Replies: 11
- Views: 4603
Re: Is Certification no longer valid? (using TheTVDB)
Awesome! Thanks a lot for the response.. So i can just ignore the bindings thing right?
I will change the certification from .US to .usa and try again. and yes, i like using TVDB because it adds genre as opposed to the generic 'animation' added by TMDB. Thanks!
I will change the certification from .US to .usa and try again. and yes, i like using TVDB because it adds genre as opposed to the generic 'animation' added by TMDB. Thanks!
- 06 Dec 2023, 20:33
- Forum: Windows
- Topic: Is Certification no longer valid? (using TheTVDB)
- Replies: 11
- Views: 4603
Re: Is Certification no longer valid? (using TheTVDB)
Ok. but this used to work with no issues.. been using it since i got FileBot.
I just changed that setting and still not getting any certification... i do see an error on the top of the edit format page:
Binding "media": Failed to read media info: Binding "file": undefined
I just changed that setting and still not getting any certification... i do see an error on the top of the edit format page:
Binding "media": Failed to read media info: Binding "file": undefined
- 06 Dec 2023, 19:25
- Forum: Windows
- Topic: Is Certification no longer valid? (using TheTVDB)
- Replies: 11
- Views: 4603
Re: Is Certification no longer valid? (using TheTVDB)
Ok. thanks. I tried with TVDB, TMDB, ANIdb, and TVMaze... none of the 5 shows got {certification} information.. 
myanimelist shows rating for all these shows.. don't know why the DBs are missing it..
myanimelist shows rating for all these shows.. don't know why the DBs are missing it..
- 06 Dec 2023, 17:20
- Forum: Windows
- Topic: Is Certification no longer valid? (using TheTVDB)
- Replies: 11
- Views: 4603
Re: Is Certification no longer valid?
The TVDB and i have tried 5 different series...
A Galaxy Next Door [, Animation, 2023]
Am I Actually the Strongest [, Animation, 2023]
BNA [, Animation, 2020]
Chainsaw Man [, Animation, 2022]
etc
Can you please try an anime series? doesn't work for me.
A Galaxy Next Door [, Animation, 2023]
Am I Actually the Strongest [, Animation, 2023]
BNA [, Animation, 2020]
Chainsaw Man [, Animation, 2022]
etc
Can you please try an anime series? doesn't work for me.
- 06 Dec 2023, 15:53
- Forum: Windows
- Topic: Is Certification no longer valid? (using TheTVDB)
- Replies: 11
- Views: 4603
Is Certification no longer valid? (using TheTVDB)
Hi, i haven't had issues in a while until now. I'm on the latest FileBot and when i try to rename series files, the certification (PG, PG-13, etc) is not being parsed into the folder names as i have it. How can i fix it?
This is what i have: /Processed/{n} [{certification}, {genre}, {y}]/{'Season ...
This is what i have: /Processed/{n} [{certification}, {genre}, {y}]/{'Season ...
- 05 Aug 2019, 16:13
- Forum: Windows
- Topic: NullPointerException all of a sudden (when fetching artwork)
- Replies: 4
- Views: 4242
Re: NullPointerException all of a sudden (when fetching artwork)
Ok. thanks for looking! 
- 02 Aug 2019, 19:55
- Forum: Windows
- Topic: NullPointerException all of a sudden (when fetching artwork)
- Replies: 4
- Views: 4242
NullPointerException all of a sudden (when fetching artwork)
Hello, been using filebot for quite some time without any issues until today..
When i do a filebot.exe -script fn:artwork.tvdb r:/processed
I get
R:\processed\DD Fist of the North Star [TV-PG, Animation, 2013]\Season 1 => Search by DD Fist of the North Star
R:\processed\DD Fist of the North ...
When i do a filebot.exe -script fn:artwork.tvdb r:/processed
I get
R:\processed\DD Fist of the North Star [TV-PG, Animation, 2013]\Season 1 => Search by DD Fist of the North Star
R:\processed\DD Fist of the North ...
- 13 Nov 2018, 22:06
- Forum: Windows
- Topic: Still move files if match not found
- Replies: 4
- Views: 3690
Re: Still move files if match not found
After calling filebot -rename --db TheTVDB , the only files that are left behind are files that cannot be matched, and you could deal with those a second filebot -rename --db xattr call.
Ok, so tried this and it's a mess... every file goes into it's own dir with their filename as the foldername ...
- 13 Nov 2018, 20:06
- Forum: Windows
- Topic: Still move files if match not found
- Replies: 4
- Views: 3690
Re: Still move files if match not found
Ok, I'll try that. Thanks.
- 10 Nov 2018, 16:51
- Forum: Windows
- Topic: Still move files if match not found
- Replies: 4
- Views: 3690
Still move files if match not found
Is there a way to still move the files -rename cannot match?
filebot -rename -r "H:/Download" --output "H:/Complete" --format "{n} [{certification}, {genre}, {y}]/{'Season ' +s}/{n} - {s00e00} - {t}" -non-strict --db TVDB --action move --def subtitles=en
What can i add here to do this?
Thanks.
filebot -rename -r "H:/Download" --output "H:/Complete" --format "{n} [{certification}, {genre}, {y}]/{'Season ' +s}/{n} - {s00e00} - {t}" -non-strict --db TVDB --action move --def subtitles=en
What can i add here to do this?
Thanks.
- 08 Nov 2018, 20:19
- Forum: Windows
- Topic: FileBot on the Windows Store
- Replies: 224
- Views: 432930
Re: FileBot on the Windows Store
How do i request a promo code for a previous donation?
My filebot is 4.7 and i can't remember how to manually update it.. Thanks.
- 26 Oct 2017, 13:19
- Forum: Windows
- Topic: Error when running a rename script
- Replies: 6
- Views: 5168
Re: Error when running a rename script
you can get the new file from here:
https://mvnrepository.com/artifact/net.java.dev.jna/jna/4.5.0
unpack using e.g 7-zip
location:
jna-4.5.0.jar\com\sun\jna\win32-x86\jnidispatch.dll
OR
jna-4.5.0.jar\com\sun\jna\win32-x86-64\jnidispatch.dll
replace file in root of filebot or if some other ...
- 23 Oct 2017, 21:57
- Forum: Windows
- Topic: Error when running a rename script
- Replies: 6
- Views: 5168
Re: Error when running a rename script
Ok. thanks. 
- 23 Oct 2017, 16:55
- Forum: Windows
- Topic: Error when running a rename script
- Replies: 6
- Views: 5168
- 23 Oct 2017, 13:36
- Forum: Windows
- Topic: Error when running a rename script
- Replies: 6
- Views: 5168
Error when running a rename script
Hello, i have not had any problems running my rename script until now. I now get this:
Any ideas? Thanks.
Code: Select all
java.lang.Error:
There is an incompatible JNA native library installed on this system
Expected: 5.2.0
Found: 5.1.0
(at C:\Program Files\FileBot\jnidispatch.dll).
- 13 Oct 2017, 15:52
- Forum: Windows
- Topic: Artwork is 0k...
- Replies: 5
- Views: 4821
Re: Artwork is 0k...
That topic really didn't help as i don't use cloudfare or whatever it's called...
so...only way to fix it is upgrading to the paid version huh?
so...only way to fix it is upgrading to the paid version huh?
- 05 Oct 2017, 16:08
- Forum: Windows
- Topic: Artwork is 0k...
- Replies: 5
- Views: 4821
Artwork is 0k...
Hello, i'm using to get my artwork. It was working fine until a few days ago. Now most of the artwork is 0k... how can i fix it?
Thanks.
Code: Select all
filebot -script fn:artwork.tvdb "E:/Test"Thanks.
- 30 Aug 2017, 16:51
- Forum: Windows
- Topic: Different movie renamer beside TMDB using cmd line?
- Replies: 3
- Views: 3913
Re: Different movie renamer beside TMDB using cmd line?
Using the GUI, there's an option to use OMDb... that option is not available in the cmd scripts?
I use this to rename my movies:
filebot -rename -r G:/Test --output "G:/Test Movies" --format "Movies - {genre}/{n} ({y}) - {[certification, genre]}/{n} ({y})" --db TheMovieDB --action move --def ...
I use this to rename my movies:
filebot -rename -r G:/Test --output "G:/Test Movies" --format "Movies - {genre}/{n} ({y}) - {[certification, genre]}/{n} ({y})" --db TheMovieDB --action move --def ...
- 30 Aug 2017, 13:21
- Forum: Windows
- Topic: Different movie renamer beside TMDB using cmd line?
- Replies: 3
- Views: 3913
Different movie renamer beside TMDB using cmd line?
Hello, are the any other movie renamers i can use besides TMDB when using a cmd line script? The issue i'm having is that it's not consistent. For example, It renamed The Hobbit: The Desolation of Smaug and classified it as an Action genre. While is renamed The Hobbit: The Battle of the Five Armies ...
- 21 Aug 2017, 15:39
- Forum: Scripting and Automation
- Topic: Sort in folder based on genre?
- Replies: 10
- Views: 8265
Re: Sort in folder based on genre?
That's just a warning that your E drive filesystem doesn't support extended attributes:
https://en.wikipedia.org/wiki/Extended_file_attributes
You won't be able to fix that unless you use NTFS or enable EAs on your SMB share if it's a network drive.
Hmm.. it is NTFS. I wouldn't be able to have ...
- 17 Aug 2017, 16:48
- Forum: Scripting and Automation
- Topic: Sort in folder based on genre?
- Replies: 10
- Views: 8265
Re: Sort in folder based on genre?
PS: I fixed it.. but i still get: Failed to set xattr: E:\Test Movies\Action\Big Game (2014) - [PG-13, Action]\Big Game (2014).mp4:net.filebot.metadata
- 17 Aug 2017, 16:38
- Forum: Scripting and Automation
- Topic: Sort in folder based on genre?
- Replies: 10
- Views: 8265
Re: Sort in folder based on genre?
Ok. so i did --format "{genre}/{n} ({y})/{n} ({y}) - {[certification, genre]}"
and it move the movie over to a subdir called Action which is the right genre but i also get this:
Failed to set xattr: E:\Test Movies\Action\Big Game (2014)\Big Game (2014) - [PG-13, Action].mp4:net.filebot.metadata
and it move the movie over to a subdir called Action which is the right genre but i also get this:
Failed to set xattr: E:\Test Movies\Action\Big Game (2014)\Big Game (2014) - [PG-13, Action].mp4:net.filebot.metadata
- 17 Aug 2017, 16:33
- Forum: Scripting and Automation
- Topic: Sort in folder based on genre?
- Replies: 10
- Views: 8265
Re: Sort in folder based on genre?
--output expects a folder path while --format expects a format expression:
--output "E:/Test Movies" --format "{genre}/{n} ({y})/{n} ({y}) - {[certification, genre]}"
:!: You seem to be mixing amc script options into your command-line call. Note that they won't have any effect.
Ok.. So ...
- 17 Aug 2017, 15:45
- Forum: Scripting and Automation
- Topic: Sort in folder based on genre?
- Replies: 10
- Views: 8265
Re: Sort in folder based on genre?
Ahh.. thanks for the prompt response! :)
Update: Ok, i did this
filebot -rename -r E:/Test --output "E:/Test Movies/{genre}/" --format "{n} ({y})/{n} ({y}) - {[certification, genre]}" --db TheMovieDB --action copy --def subtitles=en --def artwork=y
and ended up with a dir called {genre}
any ...
Update: Ok, i did this
filebot -rename -r E:/Test --output "E:/Test Movies/{genre}/" --format "{n} ({y})/{n} ({y}) - {[certification, genre]}" --db TheMovieDB --action copy --def subtitles=en --def artwork=y
and ended up with a dir called {genre}
any ...
- 17 Aug 2017, 15:24
- Forum: Scripting and Automation
- Topic: Sort in folder based on genre?
- Replies: 10
- Views: 8265
Sort in folder based on genre?
Hello, is there a way to sort my movie folders into parent folders based on genre?
Thanks,
vballrican
Thanks,
vballrican
- 17 Mar 2017, 03:34
- Forum: Windows
- Topic: Error when running filebot -script fn:artwork.tmdb "dir"
- Replies: 1
- Views: 2196
Error when running filebot -script fn:artwork.tmdb "dir"
I'm getting this error when running E:\>filebot -script fn:artwork.tmdb "E:/dir" It was working last week. Any idea?
No such property: strict for class: net.filebot.cli.ArgumentBean
groovy.lang.MissingPropertyException: No such property: strict for class: net.filebot.cli.ArgumentBean
at Script1 ...
No such property: strict for class: net.filebot.cli.ArgumentBean
groovy.lang.MissingPropertyException: No such property: strict for class: net.filebot.cli.ArgumentBean
at Script1 ...
- 08 Dec 2016, 03:00
- Forum: Windows
- Topic: Getting error when using the artwork script
- Replies: 2
- Views: 3173
Re: Getting error when using the artwork script
TheTVDB server was down at the the:
java.io.IOException: Server returned HTTP response code
Wait a few hours (or days in the worst case) and then try again.
A small donation to TheTVDB would be appreciated since running servers reliable is not an easy or cheap task:
http://thetvdb.com/donate ...
java.io.IOException: Server returned HTTP response code
Wait a few hours (or days in the worst case) and then try again.
A small donation to TheTVDB would be appreciated since running servers reliable is not an easy or cheap task:
http://thetvdb.com/donate ...
- 08 Dec 2016, 01:34
- Forum: Windows
- Topic: Getting error when using the artwork script
- Replies: 2
- Views: 3173
Getting error when using the artwork script
Hello, i'm getting this error when using the artwork script. I don't know what is happening.
this is what i'm running on the command line: F:\>filebot -script fn:artwork.tvdb f:\Anime
F:\Anime\Battle Spirits- Burning Soul\Season 1 => Search by battle spirits burning soul
Fetch failed: java.io ...
this is what i'm running on the command line: F:\>filebot -script fn:artwork.tvdb f:\Anime
F:\Anime\Battle Spirits- Burning Soul\Season 1 => Search by battle spirits burning soul
Fetch failed: java.io ...
- 08 Oct 2016, 22:03
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Re: Anime and the AMC Script
Ok. I did that and lost the file rename...
arrgghhh!! *pulling my hair*..
- 08 Oct 2016, 18:34
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Re: Anime and the AMC Script
Ok, so i used the normal amc script as is except i added ut_label=TV to it like this:
filebot -script fn:amc --output "N:/Media" --log-file amc.log --action move -non-strict "N:/Process" --def excludeList=amc.txt artwork=y ut_label=TV
It processes my files and renames them according to theTVDB ...
filebot -script fn:amc --output "N:/Media" --log-file amc.log --action move -non-strict "N:/Process" --def excludeList=amc.txt artwork=y ut_label=TV
It processes my files and renames them according to theTVDB ...
- 07 Oct 2016, 21:22
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Re: Script not working properly anymore
The Smart way of using the AMC Script while dealing with Anime manually:
1. Use the amc script as is and let it do whatever it wants.
2. Now you have Anime, TV Shows and Movies folders.
3. TV Shows and Movies folders are added to Plex/Kodi (but Anime is not )
4. Now you have TV Shows and Movies ...
1. Use the amc script as is and let it do whatever it wants.
2. Now you have Anime, TV Shows and Movies folders.
3. TV Shows and Movies folders are added to Plex/Kodi (but Anime is not )
4. Now you have TV Shows and Movies ...
- 07 Oct 2016, 20:54
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Re: Script not working properly anymore
Ok. So this is my script right now..
filebot -script fn:amc --output "N:/Done" -non-strict "N:/process" --log-file amc.log --action move --def excludeList=amc.txt ut_label=TV artwork=y "seriesFormat=N:/Series/Anime/{n} [{certification}, {genre}, {y}]/Season {s}/{fn}" "animeFormat=N:/Anime/{n ...
filebot -script fn:amc --output "N:/Done" -non-strict "N:/process" --log-file amc.log --action move --def excludeList=amc.txt ut_label=TV artwork=y "seriesFormat=N:/Series/Anime/{n} [{certification}, {genre}, {y}]/Season {s}/{fn}" "animeFormat=N:/Anime/{n ...
- 07 Oct 2016, 19:52
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Re: Script not working properly anymore
Ok, Thanks a lot. I was just trying to automate my new shows but 100% automation is impossible.. :) Love the program and keep up the good work! :)
After i rename the folders/files with the GUI, i use this to fetch artwork and move the files into the appropriate dirs. But you mentioned that the amc ...
After i rename the folders/files with the GUI, i use this to fetch artwork and move the files into the appropriate dirs. But you mentioned that the amc ...
- 07 Oct 2016, 18:57
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Re: Script not working properly anymore
1. The GUI and the CLI use the format engine. The same code. It could not possibly yield different results (unless input is different). You're probably testing with two different files for two different Anime, one that happens to work and one that happens not to work.
-- Ok. I actually tested ...
-- Ok. I actually tested ...
- 07 Oct 2016, 16:54
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Re: Script not working properly anymore
:cry: So for now, all i can use is the basic script to maybe copy the folder/files to the appropriate dirs and manually run them thru the Filebot GUI(Which works pretty good)? The utorrent automation idea covers only basic processing due to the differences between the script and the gui?
Can I at ...
Can I at ...
- 07 Oct 2016, 15:01
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Re: Script not working properly anymore
Ok. :( so if the amc script ignores my --format options, how do i get the files to the proper dirs after renaming, artwork, etc?
Trying without the --db and --format options right now.
Basically, i just need a script that processes after a utorrent download. It renames the series according to ...
Trying without the --db and --format options right now.
Basically, i just need a script that processes after a utorrent download. It renames the series according to ...
- 07 Oct 2016, 04:29
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Re: Script not working properly anymore
So --db TheTVDB doesn't define which DB to use for renaming? If I run Haikyuu thru the GUI, it renames the episodes in the SxE format and creates the Season 1 and Season 2 folders inside the main title folder... I can't get that with the CLI script.. :(
Edit: So i added ut_label=TV to my script and ...
Edit: So i added ut_label=TV to my script and ...
- 07 Oct 2016, 04:15
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Re: Script not working properly anymore
Anime don't have seasons. Converting AniDB Absolute episode data to TheTVDB Airdate SxE episode data is non-trivia.
Please read [Anime] Convert Absolute to SxE numbers .
But the GUI creates a season folder accordingly and renames according to TheTVDB. The TVDB anime has seasons! For example ...
Please read [Anime] Convert Absolute to SxE numbers .
But the GUI creates a season folder accordingly and renames according to TheTVDB. The TVDB anime has seasons! For example ...
- 06 Oct 2016, 21:09
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Script not working the way i need it
Hi Rednoah, i started using Filebot again after a while. Trying to setup an automated script in uTorrent that processes downloaded files.. I have what i need almost work but.. a few things do not.. I need the script to rename the downloaded movies/series/anime accordingly.. That works except it ...
- 29 Feb 2016, 15:17
- Forum: Scripting and Automation
- Topic: Using custom format in Groovy script
- Replies: 10
- Views: 8418
Re: Using custom format in Groovy script
--def artwork=y is a feature of the amc script, so you can either use the amc script, or use the artwork scripts directly. Simple -rename calls do not fetch artwork.
@see https://www.filebot.net/forums/viewtopic.php?f=4&t=5#p204
@see https://www.filebot.net/forums/viewtopic.php?f=4&t=5#p205
Hi ...
@see https://www.filebot.net/forums/viewtopic.php?f=4&t=5#p204
@see https://www.filebot.net/forums/viewtopic.php?f=4&t=5#p205
Hi ...
- 25 Feb 2016, 22:48
- Forum: Scripting and Automation
- Topic: Using custom format in Groovy script
- Replies: 10
- Views: 8418
Re: Using custom format in Groovy script
You don't really need a script... Just move files into a new structure in one go:
filebot -rename -r /path/to/old --output /path/to/new --format "{n} ({y})/{n} ({y}) - {[certification, genre]}" --db TheMovieDB --action TEST
Thanks but I don't get arkwork and subtitles using this... How do i add ...
filebot -rename -r /path/to/old --output /path/to/new --format "{n} ({y})/{n} ({y}) - {[certification, genre]}" --db TheMovieDB --action TEST
Thanks but I don't get arkwork and subtitles using this... How do i add ...
- 05 Feb 2016, 15:02
- Forum: Scripting and Automation
- Topic: Using custom format in Groovy script
- Replies: 10
- Views: 8418
Re: Using custom format in Groovy script
Rednoah, hope all is well.
I started using my groovy script to rename folders but I also want to rename the movie file as well. What do i need to add to this code to make it work? Thanks in advance.
args.eachMediaFolder { dir ->
println dir
rename(file:dir, format:'{n} ({y}) - {[certification ...
I started using my groovy script to rename folders but I also want to rename the movie file as well. What do i need to add to this code to make it work? Thanks in advance.
args.eachMediaFolder { dir ->
println dir
rename(file:dir, format:'{n} ({y}) - {[certification ...
- 09 Nov 2015, 16:03
- Forum: Scripting and Automation
- Topic: Using custom format in Groovy script
- Replies: 10
- Views: 8418
Re: Using custom format in Groovy script
Thank you. I will use that. And yes, i have no clue when it comes to scripting. The one i use for my Movies works just fine... was trying to get one for TV Shows/Anime shows to work. Thank you.
- 08 Nov 2015, 16:33
- Forum: Scripting and Automation
- Topic: Using custom format in Groovy script
- Replies: 10
- Views: 8418
Re: Help with groovy script
Thanks, and if i want that in [], it has to be [[certification, genre, y]]?
- 08 Nov 2015, 06:48
- Forum: Scripting and Automation
- Topic: Using custom format in Groovy script
- Replies: 10
- Views: 8418
Using custom format in Groovy script
Hello everyone, i'm using a script to rename my movies like this:
args.eachMediaFolder { dir ->
println dir
rename(file:dir, format:'{n} ({y}) - [{certification, genre}]', db:'TheMovieDB')
}
Now i want to use a similar script for TV shows/Anime shows that renames the folder to example: Full ...
args.eachMediaFolder { dir ->
println dir
rename(file:dir, format:'{n} ({y}) - [{certification, genre}]', db:'TheMovieDB')
}
Now i want to use a similar script for TV shows/Anime shows that renames the folder to example: Full ...
- 04 Feb 2015, 16:28
- Forum: Scripting and Automation
- Topic: Anime and the AMC Script
- Replies: 23
- Views: 18034
Anime and the AMC Script
Hello everyone, I had my system configured to use filebot upon completion of torrent and it was working fine until I tried a series recently...
Now it doesn't rename the files like The.Big.Bang.Theory.S08E02.HDTV.x264-LOL to The Big Bang Theory S08E02 - (episode name).
Here's the script ...
Now it doesn't rename the files like The.Big.Bang.Theory.S08E02.HDTV.x264-LOL to The Big Bang Theory S08E02 - (episode name).
Here's the script ...
- 02 Jan 2015, 16:37
- Forum: Scripting and Automation
- Topic: Command line not renaming files in Anime
- Replies: 4
- Views: 3350
Re: Command line not renaming files in Anime
Since the files use absolute numbering and contain CRC32 checksums in the filename the amc script will processed them in Anime mode. You might be able to force it via --def ut_label=TV as per amc script documentation.
Ahh..thanks. I saw that but didn't know what it meant. Will change it today and ...
Ahh..thanks. I saw that but didn't know what it meant. Will change it today and ...
- 01 Jan 2015, 20:58
- Forum: Scripting and Automation
- Topic: Command line not renaming files in Anime
- Replies: 4
- Views: 3350
Re: Command line not renaming files in Anime
If it works in the GUI then it'll also work from cmdline, assuming everything is the same.
1.
animeFormat is applied to files that are processed as Anime, i.e. processed with AniDB, which does not support {certification}.
2.
You show that {certification} works when processing files via TheTVDB ...
1.
animeFormat is applied to files that are processed as Anime, i.e. processed with AniDB, which does not support {certification}.
2.
You show that {certification} works when processing files via TheTVDB ...
- 01 Jan 2015, 15:07
- Forum: Scripting and Automation
- Topic: utorrent Automation simple
- Replies: 1
- Views: 1883
Re: utorrent Automation simple
Ok, I have just started putting a media center together. However, I can't figure out how to stop the AMC script from grabbing subtitles and artwork.
Essentially all I need filebot to do is rename the movie and tv shows that are downloaded with the correct names. But I can't seem to find a simple ...
Essentially all I need filebot to do is rename the movie and tv shows that are downloaded with the correct names. But I can't seem to find a simple ...
- 01 Jan 2015, 14:40
- Forum: Scripting and Automation
- Topic: Command line not renaming files in Anime
- Replies: 4
- Views: 3350
Command line not renaming files in Anime
Hello all, so my command line process was working fine a few days ago and today it won't rename the files... :(
Here's what i'm using:
filebot -script fn:amc --output "H:/Media" -non-strict "H:/New" --log-file amc.log --action copy --def artwork=y "seriesFormat=H:/Media/TV/{n} [{certification ...
Here's what i'm using:
filebot -script fn:amc --output "H:/Media" -non-strict "H:/New" --log-file amc.log --action copy --def artwork=y "seriesFormat=H:/Media/TV/{n} [{certification ...
- 27 Dec 2014, 22:27
- Forum: Scripting and Automation
- Topic: [NOOB] Output not as needed
- Replies: 9
- Views: 5497
Re: [NOOB] Output not as needed
Originally all the extended metadata always came from TheTVDB, no matter what database you selected for matching. In the newer version extended metadata is supported for all databases, as best as possible given that the different databases provide different kind of data.
AniDB does not have any ...
AniDB does not have any ...
- 27 Dec 2014, 17:09
- Forum: Scripting and Automation
- Topic: [NOOB] Output not as needed
- Replies: 9
- Views: 5497
Re: [NOOB] Output not as needed
1.
The AMC script will ignore --db and you will need to set --def ut_label=TV as documented in the manual. ;)
2.
As for AniDB "genres", try the latest revision. See FAQ last entry.
Thanks, using the latest build(r2770), gives me the proper genre using AniDB but... it doesn't give me the ...
The AMC script will ignore --db and you will need to set --def ut_label=TV as documented in the manual. ;)
2.
As for AniDB "genres", try the latest revision. See FAQ last entry.
Thanks, using the latest build(r2770), gives me the proper genre using AniDB but... it doesn't give me the ...
- 24 Dec 2014, 22:08
- Forum: Scripting and Automation
- Topic: [NOOB] Output not as needed
- Replies: 9
- Views: 5497
Re: [NOOB] Output not as needed
UPDATE: Got it working the way I need it using theTVDB as source... the one thing is that instead of a genre, it shows animation... I know it's an animation, I want to show action/mecha/school/etc...
- 24 Dec 2014, 21:39
- Forum: Scripting and Automation
- Topic: [NOOB] Output not as needed
- Replies: 9
- Views: 5497
Re: [NOOB] Output not as needed
1.
Yes.
2.
Have you even looked at the examples? I really don't think you have. You literally require zero language ability to figure this out from the examples:
http://www.filebot.net/naming.html#examples
3.
For testing you can remove it. But ONLY for testing. As long as you know what you're ...
Yes.
2.
Have you even looked at the examples? I really don't think you have. You literally require zero language ability to figure this out from the examples:
http://www.filebot.net/naming.html#examples
3.
For testing you can remove it. But ONLY for testing. As long as you know what you're ...
- 24 Dec 2014, 19:20
- Forum: Scripting and Automation
- Topic: [NOOB] Output not as needed
- Replies: 9
- Views: 5497
Re: Output not as needed
1.
Anime don't have seasons. Hence {s} will always fail for Anime.
2.
How does renaming each episode to the series name {n} possibly make sense? The script is doing exactly what you tell it to do. You clearly have not tried this in the GUI Format Editor, or read/understood the format docs, or ...
Anime don't have seasons. Hence {s} will always fail for Anime.
2.
How does renaming each episode to the series name {n} possibly make sense? The script is doing exactly what you tell it to do. You clearly have not tried this in the GUI Format Editor, or read/understood the format docs, or ...
- 24 Dec 2014, 18:26
- Forum: Scripting and Automation
- Topic: [NOOB] Output not as needed
- Replies: 9
- Views: 5497
[NOOB] Output not as needed
hello everyone, running this amc script:
filebot -script fn:amc --output "H:/Media" -non-strict "H:/New" --action copy --db theTVDB --def artwork=y "seriesFormat=H:/Media/TV/{n}/{'S'+s}/{n}" "animeFormat=H:/Media/Anime/{n} ({certification} {genre})/{'S'+s}/{n}" "movieFormat=H:/Media/Movies/{n} {y ...
filebot -script fn:amc --output "H:/Media" -non-strict "H:/New" --action copy --db theTVDB --def artwork=y "seriesFormat=H:/Media/TV/{n}/{'S'+s}/{n}" "animeFormat=H:/Media/Anime/{n} ({certification} {genre})/{'S'+s}/{n}" "movieFormat=H:/Media/Movies/{n} {y ...
- 23 Dec 2014, 22:33
- Forum: Scripting and Automation
- Topic: Need a little help
- Replies: 4
- Views: 3009
Re: Need a little help
I've actually read a lot on your site. i've spent more time here than in any other application i use because i see the potential of filebot when I learn to use it properly or learn some scripting(not a chance)... That said, there's no need to insult the people that come here and ask for help... i'm ...
- 23 Dec 2014, 21:40
- Forum: Scripting and Automation
- Topic: Need a little help
- Replies: 4
- Views: 3009
Re: Need a little help
FileBot does not rename folders, but that's a stupid idea anyway. What you want is move files into a new folder structure. See FAQ #1.
Wow!! Really? Calling people's ideas stupid won't get you any donations anytime soon...at least not from me.... :roll: Maybe you should look at how you answer ...
Wow!! Really? Calling people's ideas stupid won't get you any donations anytime soon...at least not from me.... :roll: Maybe you should look at how you answer ...
- 23 Dec 2014, 17:29
- Forum: Scripting and Automation
- Topic: Need a little help
- Replies: 4
- Views: 3009
Need a little help
Hello everyone, using the basic rename folder by folder from https://www.filebot.net/forums/viewtopic.php?f=4&t=5#p2211
testing on a single series folder, it renames the files inside but not the folder...
I'm using filebot -script fn:renall d:/rename -non-strict
also, tried adding --def target ...
testing on a single series folder, it renames the files inside but not the folder...
I'm using filebot -script fn:renall d:/rename -non-strict
also, tried adding --def target ...
- 21 Dec 2014, 23:38
- Forum: Scripting and Automation
- Topic: Need help with cmd line script
- Replies: 6
- Views: 4135
Re: Need help with cmd line script
Example: {n} - {s00e00} - {t}
fn = file name
n = series/movie name
s00e00 = season / episode numbers
t = episode title
--action [move, copy] : Rename action
--def deleteAfterExtract=y Delete archives after extraction
--def clean=y Automatically remove empty folders and clutter files ...
fn = file name
n = series/movie name
s00e00 = season / episode numbers
t = episode title
--action [move, copy] : Rename action
--def deleteAfterExtract=y Delete archives after extraction
--def clean=y Automatically remove empty folders and clutter files ...
- 21 Dec 2014, 15:00
- Forum: Scripting and Automation
- Topic: Need help with cmd line script
- Replies: 6
- Views: 4135
Re: Need help with cmd line script
1.
Read up on how the format works. There's plenty of examples on the website and here in the forums.
2.
Read up on all the amc script options. You might find what you're looking for.
I have read everything on here and the script stuff and that's why I asked for help... because I can't figure a ...
Read up on how the format works. There's plenty of examples on the website and here in the forums.
2.
Read up on all the amc script options. You might find what you're looking for.
I have read everything on here and the script stuff and that's why I asked for help... because I can't figure a ...
- 21 Dec 2014, 07:10
- Forum: Scripting and Automation
- Topic: Need help with cmd line script
- Replies: 6
- Views: 4135
Re: Need help with cmd line script
What does {fn} mean?
Why are you overriding --output base path in your --format if it's the same anyway?
Sorry i'm not very familiar with scripting... I changed {fn} to just {n} and now it renames the filename.
basically, I have a folder with a bunch of movies to rename the way I want them ...
Why are you overriding --output base path in your --format if it's the same anyway?
Sorry i'm not very familiar with scripting... I changed {fn} to just {n} and now it renames the filename.
basically, I have a folder with a bunch of movies to rename the way I want them ...
- 21 Dec 2014, 01:31
- Forum: Scripting and Automation
- Topic: Need help with cmd line script
- Replies: 6
- Views: 4135
Need help with cmd line script
hello everyone, I have this script and it's creating the folders correctly but it's leaving the filenames the same as the original... specifically testing with movies right now. Any help is appreciated.
filebot -script fn:amc --output "H:/Media" --log-file amc.log --action copy -non-strict "H:/Test ...
filebot -script fn:amc --output "H:/Media" --log-file amc.log --action copy -non-strict "H:/Test ...