2

So far my google-fu has failed me, so I'm hoping someone here can help:

How can I programmatically modify video metadata (specifically in my case, m4v video files)?

I'm most familiar with Ruby and C#, but I can be fairly language agnostic on this -- that is, if there's a specific language that is good at modifying file metadata, I have no problems spending the required time to learn it well enough to accomplish what I'm trying to do.

jerhinesmith
  • 15,214
  • 17
  • 62
  • 89

2 Answers2

4

This question is pretty similar to:

View/edit ID3 data for MP3 files

I have searched for the library so you dont have to:

http://download.banshee.fm/taglib-sharp/

Even tho it has linux on its name it is for mono, so it should compile fine in Visual Studio :)

Hope it helps.

Community
  • 1
  • 1
Machinarius
  • 3,637
  • 3
  • 30
  • 53
1

Consider asking http://www.ffmpeg.org/contact.html in #ffmpeg

I don't think they use ID3 tags.

EnabrenTane
  • 7,428
  • 2
  • 26
  • 44
  • 1
    MP4 allows for ID3 Tag embedding. See http://en.wikipedia.org/wiki/ID3#Implementation_in_non-mp3s_and_alternatives – Machinarius Dec 19 '10 at 20:14