This repository was archived by the owner on Mar 2, 2025. It is now read-only.

Description
Hi, I've had a quick look at the source and unless I'm missing something, the "superview" function is just stretching the input file to 16:9
function superview() {
for i in *.MP4;
do name=`echo $i | cut -d'.' -f1`+S;
echo $name;
ffmpeg -i $i -q:a 1 -q:v 1 0 -vcodec mpeg4 -acodec ac3 -aspect 16:9 -strict experimental $name.MP4
done
}
Isn't this missing the clever dynamic stretching that superview actually does, where the centre is unstretched and the edges are over-stretched to compensate?
I've been searching for a way to do this in Ubuntu, but not found anything yet.