var fDesc=new Array();
fDesc[0] = "Adobe AIR app (Windows OSX Linux) for renaming movie files & DVD folders, downloading posters, and creating .url shortcut links to IMDB. Uses NFO file when available. Remembers words to save (720p, DTS) and remove (like release group names).
Features:
- Rename movie files & DVD Folders using IMDB information
- Download Posters from themoviedb.org
- Parses NFO files for IMDB URL to ease naming
- Helps automate the process by intelligently ignoring certain terms
- Creates .url file for easy access to IMDB website
- Windows & OS X & Linux! You will need to install Adobe AIR first.
- Customizable file naming format
- Ability to Undo recent renames
- Logging of original filenames
- Remembers settings (window size/location) and removed/saved terms";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}