This is to get Title on French langage on 64bit version of windows
It's easy adaptable to other langage or 32bit version of windows (see comments in regfile)
To get these functions when you right click on a file on Explorer

1) Get Subtitle for a selected file but before you need:
a) to create an account on http://www.opensubtitles.org
b) and login to OpenSubtitles.org from Filebot by typing on cmd console
Code: Select all
filebot -script fn:osdb.login
2) Rename Anime for a selected Japanese Anime file using AniDB engine with [<Anime Title> - (<year>)] format
3) Rename Episode for a selected Serial Episode file using TheTVDB engine with [<Serial Title> - S00E00 - Episode Title] format
4) Rename Movie for a selected Movie file using TheMovieDB engine with [<Movie Title> - (<year>)] format
5) Rename Undo Undo the renamed file (thanks rednoah!)
Select all this lines below and save it to a file named filebot-context-menu.reg on your Desktop and execute it
Code: Select all
Windows Registry Editor Version 5.00
# To rename a serial episode to format : <Serial Title> - SxxExx - Episode Title
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Rename Episode\command]
@="cmd /c filebot -rename -r \"%1\" --format \"{n} - {s00e00} - {t}\" --db TheTVDB -non-strict --lang fr --log-file context.log"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Rename Episode]
"Icon"="%ProgramW6432%\\FileBot\\filebot.exe"
# To rename a movie title to format : <Movie Title> - (<year>)
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Rename Movie\command]
@="cmd /c filebot -rename -r \"%1\" --format \"{n} ({y})\" --db TheMovieDB -non-strict --lang fr --log-file context.log"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Rename Movie]
"Icon"="%ProgramW6432%\\FileBot\\filebot.exe"
# To rename a Manga Anime title to format : <Anime Title> - (<year>)
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Rename Anime\command]
@="cmd /c filebot -rename -r \"%1\" --format \"{n} ({y})\" --db AniDB -non-strict --lang fr --log-file context.log"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Rename Anime]
"Icon"="%ProgramW6432%\\FileBot\\filebot.exe"
# if you have installed a 32 bit version of Filebot, use %ProgramFiles% or %ProgramFiles (x32)% instead of %ProgramW6432%
# To undo the renamed file with Filebot
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Rename Undo\command]
@="cmd /c filebot -script fn:revert \"%1\""
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Rename Undo]
"Icon"="%ProgramW6432%\\FileBot\\filebot.exe"
# To get subtitle from OpenSubtitles.org
# To login to OpenSubtitles.org from Filebot : >filebot -script fn:osdb.login
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Get Subtitle\command]
@="cmd /c filebot -get-missing-subtitles \"%1\" -non-strict --lang fr --encoding utf8 --log-file context.log"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\Get Subtitle]
"Icon"="%ProgramW6432%\\FileBot\\filebot.exe"
# To avoid error : Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5
[HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Prefs]
# Same if 64bit of JAVA is installed on WIN64 bit
#[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Prefs]
