List of sphere projections: Difference between revisions

From David's Wiki
Line 15: Line 15:


==Converting Between Projections==
==Converting Between Projections==
See FFmpeg's v360 filter
See FFmpeg's [https://ffmpeg.org/ffmpeg-filters.html#v360 v360 filter]
 
;Converting EAC to equirectangular
<pre>
ffmpeg -i input.mp4 -vf "v360=eac:e" output.mp4
</pre>


==Resources==
==Resources==
* [[Wikipedia: List of map projections]]
* [[Wikipedia: List of map projections]]
* [[Wikipedia: 360 video projection]]
* [[Wikipedia: 360 video projection]]

Revision as of 17:18, 14 May 2020

Below is a list of common projections which are used to project the texture of a sphere onto a 2D surface.
These are often used for 360 images, 360 videos, and world maps.

List

More Projections

Converting Between Projections

See FFmpeg's v360 filter

Converting EAC to equirectangular
ffmpeg -i input.mp4 -vf "v360=eac:e" output.mp4

Resources