Search found 24036 matches
- 27 Aug 2012, 14:02
- Forum: Help and Support
- Topic: POSTBUCKET - where random posts in unrelated topics go
- Replies: 1035
- Views: 1125449
Re: Fully Automated Media Center
I donno. What's it doing? In the utorrent log it'll show you exactly what command it's calling, just try pasting that into the cmd and see what happens.
- 27 Aug 2012, 13:43
- Forum: Help and Support
- Topic: POSTBUCKET - where random posts in unrelated topics go
- Replies: 1035
- Views: 1125449
Re: Fully Automated Media Center
PATH is automatically adjusted by msi so basically Windows itself updating the %PATH%. With or without \ both works. The reason cmd didn't recognize filebot at first is that it's reading PATH on startup. So if you first start cmd and then install filebot it will use the old PATH and not find ...
- 27 Aug 2012, 13:04
- Forum: Scripting and Automation
- Topic: Sorting films by genre with symlinks?
- Replies: 9
- Views: 8266
Re: Sorting films by genre with symlinks?
Well, the sample script works as it is. But you somehow randomly copy&pasted things together... The only thing that changes is adding a custom action property where the value of that property is a closure: args.eachMediaFolder { rename(folder:it, action:{ from, to -> execute('echo', 'FROM', from ...
- 27 Aug 2012, 11:12
- Forum: Scripting and Automation
- Topic: mediainfo script -- different variables
- Replies: 3
- Views: 4245
- 27 Aug 2012, 11:05
- Forum: Scripting and Automation
- Topic: Sorting films by genre with symlinks?
- Replies: 9
- Views: 8266
Re: Sorting films by genre with symlinks?
e.g. Replace rename action with any cmdline tool:
http://filebot.sourceforge.net/forums/v ... ?f=4&t=252
http://filebot.sourceforge.net/forums/v ... ?f=4&t=252
- 27 Aug 2012, 11:04
- Forum: Scripting and Automation
- Topic: [CODE] Snippets & Examples
- Replies: 11
- Views: 35335
[CODE] Custom Rename Action
In scripting you can just pass in a closure to replace the standard action with your own arbitrary logic. Anything is possible.
e.g.
e.g.
Code: Select all
rename(
file: args.getFiles(),
action: { from, to ->
execute('echo', 'FROM', from, 'TO', to)
}
)
- 27 Aug 2012, 09:12
- Forum: Scripting and Automation
- Topic: Sorting films by genre with symlinks?
- Replies: 9
- Views: 8266
Re: Sorting films by genre with symlinks?
In scripting you could define a custom rename action that'll just execute "ln -s ..." for each file/episode match.
- 27 Aug 2012, 00:46
- Forum: Scripting and Automation
- Topic: mediainfo script -- different variables
- Replies: 3
- Views: 4245
Re: mediainfo script -- different variables
Everything is documented in the format editor by opening the binding dialog. Plus it's all on the website. e.g. FileBot will give you the "file" variable of type File, but File.length() is defined by the Groovy/Java runtime, along with many many many many other things. Refer to the GDK and JDK for ...
- 27 Aug 2012, 00:40
- Forum: Scripting and Automation
- Topic: Sorting films by genre with symlinks?
- Replies: 9
- Views: 8266
Re: Sorting films by genre with symlinks?
Sure. Set --format to some path pattern that includes the genre, i.e. X:/Movies/{genres[0]}/... and set --action symlink. You need Java 7 for symlinking to work.
- 27 Aug 2012, 00:35
- Forum: Help and Support
- Topic: Help with a new script
- Replies: 7
- Views: 7178
Re: Help with a new script
The uTorrent script will only touch video/subtitles files anyway so it doesn't matter what other stuff you have. If there is archives they will be extracted, but if there isn't things will move on, doesn't matter. You could just try running the uTorrent scripts manually on some files and see what ...
- 26 Aug 2012, 06:21
- Forum: Feature Requests and Bug Reports
- Topic: Feature : Tracking List of Shows
- Replies: 3
- Views: 3932
Re: Feature : Tracking List of Shows
If you install the msi the "filebot" cmd will be in the path.
btw your cmdline doesn't work cause you'll need to run the jar with java, i.e. java -jar filebot.jar ... but that's all in filebot.cmd if you had installed the msi.
btw your cmdline doesn't work cause you'll need to run the jar with java, i.e. java -jar filebot.jar ... but that's all in filebot.cmd if you had installed the msi.
- 26 Aug 2012, 01:41
- Forum: Feature Requests and Bug Reports
- Topic: any idea of this mismatch
- Replies: 2
- Views: 4144
Re: any idea of this mismatch
C³ might be a problem because it's less then 3 characters (and only 1 normal letter). TVDB search doesn't handle that well as far as I remember.
- 26 Aug 2012, 01:40
- Forum: Feature Requests and Bug Reports
- Topic: any idea of this mismatch
- Replies: 2
- Views: 4144
Re: any idea of this mismatch
If you send me the original file names as text I can run some tests and see what's happening. Since FileBot always tries to match all files with all episode data at once (not file by file) things might get a bit funny in the later matching steps if your filenames don't actually match the episode ...
- 26 Aug 2012, 01:23
- Forum: Help and Support
- Topic: POSTBUCKET - where random posts in unrelated topics go
- Replies: 1035
- Views: 1125449
Re: Fully Automated Media Center
I don't know about focus, but utorrent definitely spawns a cmd window to run the given command. Also there is people that have complained about this issue long before 3.0, but really only the utorrent people can do anything about that since it's the utorrent that runs a cmd window that runs filebot ...
- 25 Aug 2012, 14:04
- Forum: Scripting and Automation
- Topic: is their a script that can do this
- Replies: 3
- Views: 4533
Re: is their a script that can do this
Well, I don't get that issue you have with symlinks. With --action symlink FileBot will just create a symlink instead of rename each file. Folder structure will be created normally so only the files are symlinks. What you are doing seems to be exactly the same. If you do match a folder with many ...
- 25 Aug 2012, 04:22
- Forum: Help and Support
- Topic: TVDB Not working: socket error
- Replies: 1
- Views: 2927
Re: TVDB Not working: socket error
Probably a problem on their side. Can you send me the console output?
- 25 Aug 2012, 04:19
- Forum: Help and Support
- Topic: POSTBUCKET - where random posts in unrelated topics go
- Replies: 1035
- Views: 1125449
Re: Fully Automated Media Center
No, nothing has changed. FileBot has no control over the cmd window. Maybe there is a way to tell uTorrent not to spawn a new console window?
- 25 Aug 2012, 04:12
- Forum: Scripting and Automation
- Topic: is their a script that can do this
- Replies: 3
- Views: 4533
Re: is their a script that can do this
For --action symlink to work you'll need Java 7. Still not working? 7zip integration won't work on FreeBSD since I don't have J-7zip-Binding native libs for FreeBSD. I don't know about that srr stuff though. In anycase you could call the 7zip and srr cmdline tools in the script. Things should be ...
- 25 Aug 2012, 03:53
- Forum: Feature Requests and Bug Reports
- Topic: TheTVDB Alias Names not working
- Replies: 5
- Views: 6576
Re: TheTVDB Alias Names not working
Yep. I assume XBMC would use exactly the same API functions for looking up tv shows as filebot does.
- 25 Aug 2012, 03:45
- Forum: Help and Support
- Topic: Rename Folders Too
- Replies: 37
- Views: 63460
Re: Rename Folders Too
FileBot doesn't delete anything or cleanup remaining folders/files. 1. Why not move things into a new clean structure and just don't care about what's left behind? e.g. E:/sorted/TV/{n}/{n} - {s00e00} - {t} [{airdate}] 2. Or you can use the cleaner script, i.e. filebot -script fn:cleaner /path/to ...
- 25 Aug 2012, 03:35
- Forum: Help and Support
- Topic: I need help with the renaming process.
- Replies: 6
- Views: 6703
Re: I need help with the renaming process.
Well the moving is easy. Just specify a format like I showed you. E:/Movies/{n} - {director} ({y})/{n} - {director} ({y}) Now creating these text files is different. But you have all the data in filebots rename history so you can do that at a later point. There's another thread with examples on how ...
- 24 Aug 2012, 14:29
- Forum: Help and Support
- Topic: POSTBUCKET - where random posts in unrelated topics go
- Replies: 1035
- Views: 1125449
Re: Name matching to wrong show using command line
Tested. Works fine for me. E:\testdata>filebot -rename The.League.1x01.avi --action test -non-strict Filename pattern: [1,00] SxE, [0,00] CWS Rename episodes using [TheTVDB] Auto-detected query: [The League] Fetching episode data for [The League] Fetching episode data for [The League Of Pan ...
- 24 Aug 2012, 14:18
- Forum: Feature Requests and Bug Reports
- Topic: Rename tbn files?
- Replies: 4
- Views: 4263
Re: Rename tbn files?
@aduga
From what I can tell from MasterCATZ screenshot .tbn files work just fine. Probably just the script excluding non-video/subtitle files. You can fix that yourself easily. If it works well I can merge it into the official script.
From what I can tell from MasterCATZ screenshot .tbn files work just fine. Probably just the script excluding non-video/subtitle files. You can fix that yourself easily. If it works well I can merge it into the official script.
- 24 Aug 2012, 14:13
- Forum: Help and Support
- Topic: I need help with the renaming process.
- Replies: 6
- Views: 6703
Re: I need help with the renaming process.
1. So you want or you don't want the original folder name in the new path? e.g. E:/Movies/{file.parentFile.name}/{n} {y} 2. You can't create files in the GUI but it's all quite possible with filebot scripting. 3. You can select/deselect any files first (e.g. search for *Naruto*.avi) and then drop ...
- 24 Aug 2012, 14:07
- Forum: Help and Support
- Topic: POSTBUCKET - where random posts in unrelated topics go
- Replies: 1035
- Views: 1125449
Re: Name matching to wrong show using command line
The filter works on episode data being matched to. Normally it'll consider all episodes for all found shows as possible matches and try to find the best combination. With --filter you can exclude certain episodes before any matching as if they were not in the database at all.