Log in

View Full Version : Can't get Megui One-Click crop and resize properly


K-rnivoro
23rd June 2012, 16:27
I have a nice player http://www.coradir.com.ar/producto/detalle/digitv-700 which can handle even 1080p and 1080i because is actually a ISDB-T receiver, so the h264 decoder chip is fully HD. I'm very happy with it, but there is no point to load an SD card with 1080p content keeping in mind the screen is only 800x480.
I´m trying to crop 1080p or 720p content to 1,666 (5:3) aspect ratio (800/480) and then resizing it to 800x480, so I could get a "full screen" version for my kids to watch it in the car.
For 2,35:1 content, I have to crop 194 pixels from both sides (from 1280 wide content), which is ok to lost some part of the picture.
Thing is, instead of getting a 800x480 full screen video, I get a resized BUT ALSO "anamorphic" (2,35:1) version in 800x336 instead.
This is what I've tried in the "Template" tab of the "advanced Option" in One-Click:

<input>
<deinterlace>
<crop>
Crop(194,0,-194,0)
<resize>
LanczosResize(800,480) # Lanczos (Sharp)
<denoise>

Resize does not seem to work, the 2,35:1 DAR keeps somewhere and all i get is cropped AND anamorphic video.

kalehrl
24th June 2012, 08:54
Try putting a '#' in front of <crop> and <resize>.
If you don't do so, it will automatically be cropped and resized in addition to your manual cropping and resizing.

K-rnivoro
24th June 2012, 14:09
Try putting a '#' in front of <crop> and <resize>.
If you don't do so, it will automatically be cropped and resized in addition to your manual cropping and resizing.

You mean like this?:

<input>
<deinterlace>
#<crop>
Crop(194,0,-194,0)
#<resize>
LanczosResize(800,480) # Lanczos (Sharp)
<denoise>

kalehrl
25th June 2012, 17:01
Yes, try doing it like that.