8
I have been trying to understand how to add some additional metadata to a mp4 file. I understand how to add metadata, like this:
ffmpeg -i bb.mp4 -metadata title="my title" bb2.mp4
but what I am looking for is how to add some new tags i.e.
ffmpeg -i bb.mp4 -metadata newTag="newTag" bb2.mp4
newTag might be something like author's birthday, anything new not already existing!
Is this even possible?
See also https://stackoverflow.com/questions/14960857/ffmpeg-does-not-copy-custom-metadata
– xmedeko – 2018-09-27T12:28:32.960