FFmpeg: Difference between revisions

197 bytes added ,  14 May 2020
Line 154: Line 154:
<pre>
<pre>
ffmpeg -i input.mp4 -vf "v360=eac:e" output.mp4
ffmpeg -i input.mp4 -vf "v360=eac:e" output.mp4
</pre>
Sometimes you may run into errors where height or width is not divisible by 2.<br>
Apply a scale filter to fix this issue.
<pre>
ffmpeg -i input.mp4 -vf "v360=eac:e,scale=iw:-2" output.mp4
</pre>
</pre>