Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要知道 flv 视频中的旋转角度。我正在使用 exiftool,但它不显示 flv 视频的旋转标签。有什么办法知道的。
提前致谢
您可能想尝试mediainfo
在命令模式下,您可以使用:
mediainfo test.flv | grep Rotation
要获取旋转角度信息,或者如果正确调用,您可以使用:
mediainfo --Inform="Video;%Rotation%" test.flv
直接提取信息。
试试看是否有帮助。