Hello,

there seem to be some problems in the v360 filter with "perspective" output.
Tested with the latest Windows built, 2 days old. You can reproduce this with any equirectangular input image.

ffmpeg -i equirectangular_test.png -lavfi v360=e:perspective -y out1.png

The output of the above command has two problems:
-- The center of the input image is not mapped to the center of the output image. For most other projections the image center is preserved.
-- The output is mirror reversed (which means you cannot read text).

Both problems can be corrected with this workaround:

ffmpeg -i equirectangular_test.png -lavfi v360=e:perspective:pitch=90:v_flip=1 -y out2.png

Now I want to add a yaw rotation after the pitch rotation:

ffmpeg -i equirectangular_test.png -lavfi v360=e:perspective:rorder=pyr:pitch=90:yaw=20:v_flip=1 -y out3.png

But in the output you can see that a roll rotation was done.

Michael
_______________________________________________
ffmpeg-user mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to