First off awesome work on filebot, this program rocks. Here is a confirmation number for my donation for the work you've already done! Confirmation number: 6A690845FG624934J.
Now if you are still taking requests for donations to modify or create scripts I'd like to hire you to help me automate my media renaming needs as follows:
Currently I put all my video files into a single directory, then I use a .bat file I've created to convert .mkv to .mp4
Code: Select all
set avidemux="C:\Program Files (x86)\Avidemux 2.6\avidemux.exe"
set videocodec=copy
set audiocodec=copy
set outputformat=mkv
for %%f in (*.mkv) do %avidemux% --video-codec %videocodec% --audio-codec %audiocodec% --output-format %outputformat% --force-alt-h264 --load "%%f" --save "%%f.mp4" --quit
move *.mkv c:\downloads\converted\
Next I use the GUI to manually rename my files
TV shows
Code: Select all
{n.replaceTrailingBrackets().replace(':',' -').replace('?','')} - S{s.pad(2)}E{es*.pad(2).join('-E')} - {t.replace(':',' -').replace('?','').replacePart (' (Part $1)')} {('(')+vf.match(/720[pP]|1080[pP]/)+(')')}
Code: Select all
{n.replace(':',' -').replace('?','')} ({y}){" CD$pi"} {('(')+vf.match(/720[pP]|1080[pP]/)+(')')}
/Tv Shows/Game of Thrones/Season 1/
or if they are HD
/TV Shows/Game of Thrones/Season 1 (720p)/
and finally I write a log file for backup purposes that has a date stamp then what I recently added
Code: Select all
April 24, 2014
--------------
=TV Shows=
Game of Thrones s02e02
Game of Thrones s02e02 (720p)
=Kids TV Shows=
Teenage Mutant Ninja Turtles (2013) s01e01
=Movies=
Inception
Using Utorrent I'd like to trigger either a filebot script or a .bat file that will
1.Convert all my .mkv to .mp4
2.Rename them all automatically (deciding if they are movies or tv shows) and dump them all into a single folder unorganized but renamed using the schemes above.
3.Take these files and copy them onto the removable drives in a folder structure similar to above (ie: /Season #/ for SD and /Season # (720p)/ for HD), however one extra little wrinkle is that some shows are on 1 drive (g:) in a folder called "TV Shows" and some are on the other drive (h:) in a folder called "Kids Shows" so I'd like it to search the kids shows drive first and if the Series folder exists already to copy them there, if it doesn't to copy them to the regular shows drive (creating folders as needed). Also the kids tv shows and movies folders do not need to add the (720p) tag if they are HD, just the TV Shows folder.
4.Append a CSV or text file with the addtions with a time stamp
5.Trigger my plex to rescan itself
6.Send a notification via pushover
Also while renaming the shows I'd either like it to add +1 to the Season number for American Dad as the thetvdb database has shifted seasons (ex the show downloads as S09, however it is actually S10 that is airing) or to just ignore American Dad and I'll do those files manually.
I know 2,5,6 are possible with AMC, and I think 3 is probably possible as well. Not sure about the rest but you are the expert.

If a single script is able to do all that then great! If it requires multiple steps in a .bat file that works too, let me know what you think. And if you are up to it I'll send another Donation your way

Edit: I don't need it to download subs or nfo or artwork or anything like that, just renaming and sorting.
Edit 2: I should probably mention, I'm running Win 7, UTorrent and the latest version of filebot.
Thanks!
Tweak