Page 1 of 1

NOOB - rename MOVIES and find english subs

Posted: 27 Mar 2013, 05:07
by tmanto02
Hi guys,

I am a MAC user and have been using the GUI to rename my movies for a while now however I want to automate this process.

I have little to no experience with creating scripts. So any help would be great!

I want to rename my movies and download english subs.

I dont want to move/relocate them just rename and subtitle.

Where do I start??

TA

Re: NOOB - rename MOVIES and find english subs

Posted: 27 Mar 2013, 06:16
by rednoah
Read this:
http://www.filebot.net/cli.html

Fetch subtitles:

Code: Select all

filebot -get-missing-subtitles -non-strict -r /path/to/movies
Rename movies:

Code: Select all

filebot -rename -non-strict --db themoviedb -r /path/to/movies
Done.

Re: NOOB - rename MOVIES and find english subs

Posted: 27 Mar 2013, 22:35
by tmanto02
rednoah wrote:Read this:
http://www.filebot.net/cli.html

Fetch subtitles:

Code: Select all

filebot -get-missing-subtitles -non-strict -r /path/to/movies
Rename movies:

Code: Select all

filebot -rename -non-strict --db themoviedb -r /path/to/movies
Done.
Thanks for your reply - but again I'm a total noob so I have no idea what to do with that. The instructions page does not tell you either. Do I save it as a file in textedit?

Re: NOOB - rename MOVIES and find english subs

Posted: 28 Mar 2013, 00:38
by bonelifer
tmanto02 those are ran from the command line/terminal. You'll need to change "/path/to/movies" to the path of the folder that contains your movies. It'll will expect that only movies are in the folder, so don't have any TV series episodes mixed in the folder.

Re: NOOB - rename MOVIES and find english subs

Posted: 28 Mar 2013, 01:47
by tmanto02
bonelifer wrote:tmanto02 those are ran from the command line/terminal. You'll need to change "/path/to/movies" to the path of the folder that contains your movies. It'll will expect that only movies are in the folder, so don't have any TV series episodes mixed in the folder.
Thanks for you help mate, however when i do this terminal says:

-bash: filebot: command not found

Re: NOOB - rename MOVIES and find english subs

Posted: 28 Mar 2013, 03:43
by rednoah
If you don't have an alias that links to the filebot.sh yet it won't find that command. Instead just use the absolute path to filebot.sh (somewhere in the app bundle).

Re: NOOB - rename MOVIES and find english subs

Posted: 28 Mar 2013, 03:45
by tmanto02
rednoah wrote:If you don't have an alias that links to the filebot.sh yet it won't find that command. Instead just use the absolute path to filebot.sh (somewhere in the app bundle).
Is it called install.sh?

Re: NOOB - rename MOVIES and find english subs

Posted: 28 Mar 2013, 04:02
by rednoah
install.sh will link filebot.sh into /usr/bin/filebot so it's recognized in the terminal. Maybe it's just called filebot, anyway, there's an executable that'll let you run filebot in terminal.

Re: NOOB - rename MOVIES and find english subs

Posted: 26 May 2016, 01:09
by vanhouten035
-get-missing-subtitles doesn't work for me when I have every movie in a separate folder. Is there anyway to let this command look into each folder?

Re: NOOB - rename MOVIES and find english subs

Posted: 27 May 2016, 11:29
by Zignature
vanhouten035 wrote:-get-missing-subtitles doesn't work for me when I have every movie in a separate folder. Is there anyway to let this command look into each folder?
if you feed it the top directory it should search subtitles for all video files in all subdirectories

Re: NOOB - rename MOVIES and find english subs

Posted: 27 May 2016, 14:53
by rednoah
It's just -get-subtitles now and it's doing what -get-missing-subtitles used to do by default now. It will only fetch subtitles for the given files/folders though.

If you want to recursively fetch subtitles for all directories and subdirectories you should use the suball script.