How to edit or add video metadata of “rotation” in mp4?

落爺英雄遲暮 提交于 2019-12-02 23:07:56

+1 for FFMpeg. More specifically, I had good results correcting orientation metadata with

ffmpeg -i input.mp4 -metadata:s:v rotate=90 -vcodec copy -acodec copy output.mp4
danielmhanover

Check out the software FFMpeg, use ffprobe to give you the rotation metadata of any video file if it has it.

Check out this answer for functions allowing your to rotate videos.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!