Open tato-rj opened 1 year ago
How can I resize a video but keep the aspect ratio? I am using
->resize(640, 480)
but it stretches the image. Any ideas?
How can I resize a video but keep the aspect ratio? I am using ->resize(640, 480) but it stretches the image. Any ideas?
Instead of ->resize try using ->addFilter(['-vf', 'scale=-2:480'])
->resize
->addFilter(['-vf', 'scale=-2:480'])
How can I resize a video but keep the aspect ratio? I am using
but it stretches the image. Any ideas?