Hi! thanks for your reply.
Hi! In the next version i will add a option to force the destination frame rate to any value or to leave as is.
Hi! If you make some tests, please let me know :-)
Hi! If you are interested, this is the formula that i use: Width/Height: Source video resolution dstWidth/dstHeight: Destination video resolution maxWidth/maxHeight: Max Width/Height destination video resolution (400x240 or 400x224) VideoRatio = Width/Height 1) - Fit Width dstWidth = maxWidth dstHeight = Round((1/VideoRatio) * dstWidth/16)*16 : I use multiples of 16 2) - Fit Height dstHeight = maxHeight dstWidth := Round(VideoRatio * dstHeight/16)*16; 3) - Stretch dstWidth = maxWidth dstHeight = maxHeight Then i calc the crop values (multiples of 2) to pass to FFMPEG if dstHeight>maxHeight or dstWidth>maxWidth I want add a option to force destination VideoRatio (in the next versions). Paolo