Search found 9 matches
- 04 Oct 2017, 15:24
- Forum: Episode / Movie Naming Scheme
- Topic: Help with specific syntax for renaming tv show
- Replies: 1
- Views: 1871
Help with specific syntax for renaming tv show
Hello, I am trying to get the following to results, my original filename is: wwe.raw.2017.10.02.720p.hdtv.x264-kyr.mkv and I want it to be: wwe.raw.2017.s25e40.10.02.720p.hdtv.x264-kyr.mkv The syntax I am currently using is: filebot -rename . --db themoviedb::tv -non-strict --format "{n.lower ...
- 14 Jul 2015, 04:15
- Forum: Help and Support
- Topic: Help with cronjob for creating directories for my movies
- Replies: 1
- Views: 1843
Help with cronjob for creating directories for my movies
I was able to finally get the command I needed for creating directoties and then movie the original file into the said directory filebot -rename -r <Movies> --db=TheMovieDB --format "{n} ({y})/{fn}" But now I am wanting to create a cronjob to establish a sort of watch folder for this command, the ...
- 14 Jul 2015, 01:52
- Forum: Help and Support
- Topic: Help with simple rename folder command
- Replies: 0
- Views: 1925
Help with simple rename folder command
I am just starting to get reacquainted with filebot and am wanting to school myself with cli version but I am experiancing many growing pains, I am trying to run a command that will look up info from TVDB and then create a directory based on the results and then move the file there. I am wanting to ...
- 29 Jan 2014, 02:00
- Forum: Scripting and Automation
- Topic: Help with creating a simple script to rename directories
- Replies: 12
- Views: 8029
Re: Help with creating a simple script to rename directories
Ok, I went with the first one because I do not use utorrent and it is working as desired with this script filebot -script fn:watcher C:\Users\deadman36g\Downloads\MOVIES -rename -r . --format "{n} ({y})/{fn}" -non-strict --action move --db imdb No, I have a few more questions 1.) How can I keep this ...
- 29 Jan 2014, 01:34
- Forum: Scripting and Automation
- Topic: Help with creating a simple script to rename directories
- Replies: 12
- Views: 8029
Re: Help with creating a simple script to rename directories
Thanks, didn't realize '.' was current folder
So, is it possible for a script to autorun on windows login that will moniter a folder for changes and run my command when there is one?
So, is it possible for a script to autorun on windows login that will moniter a folder for changes and run my command when there is one?
- 28 Jan 2014, 19:43
- Forum: Scripting and Automation
- Topic: Help with creating a simple script to rename directories
- Replies: 12
- Views: 8029
Re: Help with creating a simple script to rename directories
I did RTFM but still have trouble I have made a few modifications to the code you gave me so that it is now filebot -rename -r . --format "{n} ({y})/{fn}" -non-strict --action move --db imdb What does the . between -r and --format represent? I would like a script that I can autorun with windows that ...
- 28 Jan 2014, 15:48
- Forum: Scripting and Automation
- Topic: Help with creating a simple script to rename directories
- Replies: 12
- Views: 8029
Re: Help with creating a simple script to rename directories
I am sorry I wasn't specific enough
I want this script to leave my filenames as they are. I just want the directory created and the files moved to the directory.
i.e.
movie/new/filebot2014.x264.DTS.mkv
would become
movie/new/Filebot (2014)/filebot2014.x264.DTS.mkv
I want this script to leave my filenames as they are. I just want the directory created and the files moved to the directory.
i.e.
movie/new/filebot2014.x264.DTS.mkv
would become
movie/new/Filebot (2014)/filebot2014.x264.DTS.mkv
- 28 Jan 2014, 04:25
- Forum: Scripting and Automation
- Topic: Help with creating a simple script to rename directories
- Replies: 12
- Views: 8029
Re: Help with creating a simple script to rename directories
I have been trying but no luck, could you please make me this script?
- 28 Jan 2014, 03:02
- Forum: Scripting and Automation
- Topic: Help with creating a simple script to rename directories
- Replies: 12
- Views: 8029
Help with creating a simple script to rename directories
I have currently been using the following command with the filebot gui to rename my movies for me {n} ({y})/{fn} Here is an example of what this does my movie is movie.2014.x264.mkv, it will create the directory 'Movie (2014)' and put my movie file inside this directory. I am wanting to automate ...