Edit MP4 Metadata with exiftool

余生颓废 提交于 2019-12-05 14:31:36

Since the time of the original question, exiftool, as of ver 11.39, has gained the ability to create/edit a larger range of MP4/MOV metadata tags. To remove the Title tag from a video the original commands that @James Taylor used will work:
exiftool -Title= movie.mp4


Unfortunately, exiftool only has limited support for writing video files other than XMP tags. Run this command exiftool -G1 -a -s -title movie.mp4. I'm guessing that the title will field will be in the Quicktime group. And Exiftool cannot write to the majority of Quicktime tags.

Edit: Some quick research and I think ffmpeg can do it for you. You should do some more research to double check but I think this command would work:
ffmpeg -i InputFile -c copy -metadata title= OutputFile

I believe that -c copy will copy the streams without re-encoding and -metadata title= will clear the title field.
See multimedia.cx for more info.

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