Posts

Showing posts from August, 2025

Metadata for media files

Image
 A friend asked a question about metadata for media files. In my production workflow, I've been using ffmpeg for this task with simple bash scripts. here is an example: ffmpeg -threads $THREADS $OVERWRITE -i $CLIPNAME -metadata title="$TITLE"  -metadata copyright="$COPYRIGHT"  -metadata copyright-eng="$COPYRIGHT"  -metadata comment="$COMMENT"  -metadata comment-eng="$COMMENT"  -metadata author="$AUTHOR"  -metadata released="$RELEASED"  -metadata artist="$ARTIST"  -metadata composer="$ARTIST"  -metadata album_artist="$ARTIST"  -metadata show="$SHOW" Going forward, how do you organize metadata? Well, I'm old school, so I put it in a structured relational database. I've built an app called Gighive that holds all your media files and includes a browser-based, searchable and sortable listing of all those media files with metadata attributions. It is backed by a very sli...