Search found 12 matches
- 05 Mar 2020, 19:33
- Forum: Episode / Movie Naming Scheme
- Topic: What is the logic for determining the standard format with {vf} ?
- Replies: 2
- Views: 4335
What is the logic for determining the standard format with {vf} ?
I'm wondering what is the logic for determining the standard format with {vf} binding? I'm working on an unrelated python script that I need to be able to parse the video resolution but I need the standard resolutions, not the actual resolutions in the case that the video has black bars cropped out ...
- 13 Jan 2018, 22:31
- Forum: Help and Support
- Topic: Is there a way to do simply print episode info in json based on file name?
- Replies: 2
- Views: 2461
Is there a way to do simply print episode info in json based on file name?
I'm working on a bash script and it would be really helpful to get all info for a specific episode via json I see that filebot -list --q "TV TITLE" will print all episodes as json. Problem is I need the info for one episode. Not the whole series. I was messing around and found that running this ...
- 22 Oct 2017, 15:48
- Forum: Ubuntu & Desktop Linux
- Topic: Is there a filebot var that outputs the original full path to file?
- Replies: 3
- Views: 3396
Re: Is there a filebot var that outputs the original full path to file?
You are a genius! haha I forgot that you can pipe commands together like that. One question though. If I run the command filebot ... | grep -oP '(?<=Input: ).+' | xargs -I touch This will grep all lines that contain... Input: /path/to/media/file.mkv to /path/to/media/file.mkv Then pass execute touch ...
- 21 Oct 2017, 16:22
- Forum: Ubuntu & Desktop Linux
- Topic: Is there a filebot var that outputs the original full path to file?
- Replies: 3
- Views: 3396
Is there a filebot var that outputs the original full path to file?
I'm using filebot amc script. I would like to add a command in the -exec that will touch the original file path after it is processed. I alreaddy touched the paths in my excludes list but I would like to to touch the files as they are processed instead of touching all of them over and over via ...
- 22 Feb 2017, 18:10
- Forum: Help and Support
- Topic: Illegal usage: output folder must be separate from input arguments
- Replies: 5
- Views: 4771
Re: Illegal usage: output folder must be separate from input arguments
1. Ahh Ok, That makes sense now.
2. Ok I will change it though ut_label=tv seems to be working as expected. Also I would like to note that ut_label=tv came from the command filebot-node for my synology generated.
3. Cool! I will be implementing that.
2. Ok I will change it though ut_label=tv seems to be working as expected. Also I would like to note that ut_label=tv came from the command filebot-node for my synology generated.
3. Cool! I will be implementing that.
- 22 Feb 2017, 17:38
- Forum: Help and Support
- Topic: Illegal usage: output folder must be separate from input arguments
- Replies: 5
- Views: 4771
Re: Illegal usage: output folder must be separate from input arguments
Do: --output '/volume1/media/.remote/Media Server/Media' :!: Don't forget about using --def excludeList when running things in an automated setup. That worked but I don't understand why? Yes my automated setup uses the excludelist. This is just a one time run to rename all current media to my new ...
- 22 Feb 2017, 17:23
- Forum: Help and Support
- Topic: Illegal usage: output folder must be separate from input arguments
- Replies: 5
- Views: 4771
Illegal usage: output folder must be separate from input arguments
I'm getting this error when running the below command and I can't make sense out of it. What am I doing wrong? ERROR Illegal usage: output folder [/volume1/media/.remote/Media Server/TV Showsnew] must be separate from input arguments [/volume1/media/.remote/Media Server/TV Shows] Command filebot ...
- 04 Dec 2016, 01:12
- Forum: Episode / Movie Naming Scheme
- Topic: FileBot is having problems identifying movies...
- Replies: 2
- Views: 3351
Re: FileBot is having problems identifying movies...
Thanks!
I was able to rename all the movies to the following format "MovieName (Year)" with the format below.
After that was done filebot was able to identify all of the movies without any problems.
I was able to rename all the movies to the following format "MovieName (Year)" with the format below.
After that was done filebot was able to identify all of the movies without any problems.
Code: Select all
{fn.after(/^[0-9 -]+/)} {Date.parse('yyyy', fn.before(/\s/)).format('(yyyy)')}
- 02 Dec 2016, 18:17
- Forum: Episode / Movie Naming Scheme
- Topic: FileBot is having problems identifying movies...
- Replies: 2
- Views: 3351
FileBot is having problems identifying movies...
I have over 1,000 movies that need to be renamed but file bot is not able to identify them. They are currently named as follows decade\year - MovieName.ext example... 1930\1937 - Snow White and the Seven Dwarfs.avi using the GUI, when I try to match them it shows a list of movies to select from ...
- 19 Nov 2016, 15:54
- Forum: Episode / Movie Naming Scheme
- Topic: Detect HEVC
- Replies: 3
- Views: 3971
Re: Detect HEVC
Ok. Well if they are not the same I don't want to do this. I was under the impression that they were the same so I just wanted to keep the files tidy.
Thanks
Thanks
- 19 Nov 2016, 14:28
- Forum: Episode / Movie Naming Scheme
- Topic: Detect HEVC
- Replies: 3
- Views: 3971
Detect HEVC
First I assume HEVC, h265, x265 are all the same right? If so I would like the filename to be x265 if it matches any of those. I want the renamer to first check the filename for the info and use that if exists. If not I want it to parse mediainfo for the data. Then if fn.match or vc equals HVEC ...
- 25 May 2016, 22:16
- Forum: Scripting and Automation
- Topic: Need help with the command line.
- Replies: 0
- Views: 2082
Need help with the command line.
I'm trying to rename all tv shows currently managed by sickrage. They are in folders like so,... /TV Shows /TV Shows/Family Guy /TV Shows/Family Guy/Season 01 /TV Shows/Family Guy/Season 01/Family Guy S01E01.mkv Obviously there is more than just the family guy show. This is just an example of the ...