gopro-linux icon indicating copy to clipboard operation
gopro-linux copied to clipboard

Is Superview just stretching to 16:9?

Open RustyToad opened this issue 6 years ago • 8 comments

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.

RustyToad avatar Oct 08 '18 12:10 RustyToad

Yes it is missing that.

KonradIT avatar Oct 08 '18 15:10 KonradIT

Thanks for the reply. Have you ever found a way to do this (create a genuine superview-like stretch) on Linux?

RustyToad avatar Oct 08 '18 15:10 RustyToad

No, it can be done in Premiere.

KonradIT avatar Oct 08 '18 16:10 KonradIT

too bad - was about to check the issues for the same thing. Thanks for clarifying

ghostface avatar Jun 19 '19 13:06 ghostface

Not possible in kdenlive?

Thovthe avatar Jul 16 '19 03:07 Thovthe

Not possible in kdenlive as far as I have found, no.

RustyToad avatar Jul 23 '19 17:07 RustyToad

@RustyToad you could use this: https://github.com/Niek/superview, the "algorithm" is fairly basic, but it's at least better than normal stretching

alexagv avatar Jul 24 '20 07:07 alexagv

@alexagv I've only just seen this (gmail filters things a bit oddly these days), thanks for the link. I'll download and check out that project this afternoon.

I've actually bought a gopro Hero 5 session since starting this thread, but would still like the option of generating this style of footage with other action cams.

RustyToad avatar Aug 02 '20 09:08 RustyToad