IMDb Weaver

By Chris Noé Last update Oct 14, 2011 — Installed 9,546 times.

aspect ratio at top

in
Subscribe to aspect ratio at top 1 post, 1 voice

MikeGolan User
FirefoxWindows

The aspect ratio is important now with 2.35 screen that I have at home, choosing if a 1080 is better or 720 will be enough for download...

CODE:

AFTER var lang = titleDoc.getLanguage();
if(...)
ADD

var aspect=titleDoc.getAspect();
if(aspect!=null) titleAttrs.push(aspect);

ADD FUNC

titleDoc.getAspect = function() {
var aspect_text = this.selectNodeNullable(
"//*[text()='Aspect Ratio:']/following-sibling::*[1]/text()");
if (aspect_text == null) {
return null;
}
return aspect_text.textContent;

}

I'd also love to have that AKA of the movie (and select only one title, from USA/UK/International in that order title and display only that) - sorry no code :-(

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel