1

I have a whole pile of MPEG2 and MP4 files. I want to add metadata to the files, such as title, author, year, etc. I can use AtomicParsley to add this information to MP4 files, but I can't see how to do this with MPEG2 files. Is this possible? If so, are there any linux FLOSS command line tools to add this data?

1 Answer 1

1

FFmpeg should do the trick in Linux:

ffmpeg -metadata title="TITLE" -metadata artist="ARTIST" -metadata date=DATE -metadata genre="GENRE" -metadata comment="COMMENT" -acodec copy -vcodec copy -i old.avi new.avi

I found this on a thread on an Arch Linux discussion board.

UPDATE: I should point out that this is not a perfect solution since you're not actually adding or editing metadata to the existing file but making a duplicate of the file with the specified metadata. Not an ideal "solution," but it's the best I've found so far.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .